diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2018-10-05 14:00:15 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2018-10-05 14:00:15 -0400 |
commit | ec49132faf0c8c42e08f4c77bb14988fd57075cb (patch) | |
tree | 515ae18ae2ac178180c1c843c3f386917fd940cc /docs/INTERNALS.md | |
parent | c5063a773f3fc3e8cebe96c69c4941781e592915 (diff) | |
download | curl-ec49132faf0c8c42e08f4c77bb14988fd57075cb.tar.gz |
INTERNALS.md: wrap lines longer than 79
Diffstat (limited to 'docs/INTERNALS.md')
-rw-r--r-- | docs/INTERNALS.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/INTERNALS.md b/docs/INTERNALS.md index a509cdb91..d1c4c62b0 100644 --- a/docs/INTERNALS.md +++ b/docs/INTERNALS.md @@ -301,7 +301,9 @@ HTTP(S) An interesting detail with the HTTP(S) request, is the `Curl_add_buffer()` series of functions we use. They append data to one single buffer, and when - the building is finished the entire request is sent off in one single write. This is done this way to overcome problems with flawed firewalls and lame servers. + the building is finished the entire request is sent off in one single write. + This is done this way to overcome problems with flawed firewalls and lame + servers. <a name="ftp"></a> FTP @@ -959,7 +961,8 @@ for older and later versions as things don't change drastically that often. to work with. `->scheme` is the URL scheme name, usually spelled out in uppercase. That's - "HTTP" or "FTP" etc. SSL versions of the protocol need their own `Curl_handler` setup so HTTPS separate from HTTP. + "HTTP" or "FTP" etc. SSL versions of the protocol need their own + `Curl_handler` setup so HTTPS separate from HTTP. `->setup_connection` is called to allow the protocol code to allocate protocol specific data that then gets associated with that `Curl_easy` for |