curl_multi_remove_handle.3: clarify what happens with connection

Closes #11817
This commit is contained in:
Daniel Stenberg 2023-09-07 18:08:57 +02:00
parent 63b9073c6a
commit 28f8440c0b
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -43,6 +43,13 @@ handles and transfers remain unaffected.
It is fine to remove a handle at any time during a transfer, just not from
within any libcurl callback function.
Removing an easy handle from the multi handle before the corresponding
transfer is complete might cause libcurl to close the connection - if the
state of it and the internal protocol handler deem it necessary. Otherwise
libcurl keeps the connection alive in the connection pool associated with the
multi handle, ready to get reused for a future transfer using this multi
handle.
.SH EXAMPLE
.nf
/* when an easy handle has completed, remove it */