diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-05-18 22:30:10 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-05-18 22:56:46 +0200 |
commit | 664ff3065031b21a4fa22b7629f54db860bbb3c7 (patch) | |
tree | 2de4442164d5e9881da1f8d2447f0bb3885666f3 | |
parent | 873d70a6d8863346f4b70001b5a3d6d161086171 (diff) | |
download | curl-664ff3065031b21a4fa22b7629f54db860bbb3c7.tar.gz |
curl_easy_setopt.3: document CLOSESOCKET* options
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index 2494ecc15..2ba37f353 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -307,6 +307,17 @@ address blacklisting. The default behavior is: Pass a pointer that will be untouched by libcurl and passed as the first argument in the opensocket callback set with \fICURLOPT_OPENSOCKETFUNCTION\fP. (Option added in 7.17.1.) +.IP CURLOPT_CLOSESOCKETFUNCTION +Function pointer that should match the \fIcurl_closesocket_callback\fP +prototype found in \fI<curl/curl.h>\fP. This function gets called by libcurl +instead of the \fIclose(2)\fP or \fIclosesocket(2)\fP call when sockets are +closed (not for any other file descriptors). This is pretty much the reverse +to the \fICURLOPT_OPENSOCKETFUNCTION\fP option. \fIReturn 0 to signal success +and 1 if there was an error. (Option added in 7.21.7) +.IP CURLOPT_CLOSESOCKETDATA +Pass a pointer that will be untouched by libcurl and passed as the first +argument in the opensocket callback set with +\fICURLOPT_CLOSESOCKETFUNCTION\fP. (Option added in 7.21.7) .IP CURLOPT_PROGRESSFUNCTION Function pointer that should match the \fIcurl_progress_callback\fP prototype found in \fI<curl/curl.h>\fP. This function gets called by libcurl instead of |