diff options
author | Emil Engler <me@emilengler.com> | 2021-05-18 18:05:54 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-05-19 00:38:10 +0200 |
commit | 158d26e4fc2ad0eb4d2115f647fbc7090429e708 (patch) | |
tree | e70b0ca80e7d1d981f7edd993fc7d6cfe789d95f /docs/INTERNALS.md | |
parent | f6b325a5094460d39d478dd810bed822eba318c6 (diff) | |
download | curl-158d26e4fc2ad0eb4d2115f647fbc7090429e708.tar.gz |
docs: document attach in INTERNALS.md
The new field in the Curl_handler struct still lacks documentation. This
adds it it from the information extracted from lib/urldata.h:797
Closes #7091
Diffstat (limited to 'docs/INTERNALS.md')
-rw-r--r-- | docs/INTERNALS.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/INTERNALS.md b/docs/INTERNALS.md index 11ca33e50..02ac0d0a7 100644 --- a/docs/INTERNALS.md +++ b/docs/INTERNALS.md @@ -1024,6 +1024,8 @@ for older and later versions as things don't change drastically that often. `->readwrite` gets called during transfer to allow the protocol to do extra reads/writes + `->attach` attaches a transfer to the connection. + `->defport` is the default report TCP or UDP port this protocol uses `->protocol` is one or more bits in the `CURLPROTO_*` set. The SSL versions |