diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-09-07 21:49:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-09-07 21:49:20 +0000 |
commit | b7eeb6e67fca686f840eacd6b8394edb58b07482 (patch) | |
tree | cdcd4b0d54bcad40a57ef409d2594cca7d4d07d4 /docs | |
parent | 7e4193b538a517eb27e4cb5b2b7973bae967add8 (diff) |
Major overhaul introducing http pipelining support and shared connection
cache within the multi handle.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libcurl/curl_multi_setopt.3 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/libcurl/curl_multi_setopt.3 b/docs/libcurl/curl_multi_setopt.3 index 0228e3d64..5279055ce 100644 --- a/docs/libcurl/curl_multi_setopt.3 +++ b/docs/libcurl/curl_multi_setopt.3 @@ -32,6 +32,13 @@ details. Pass a pointer to whatever you want passed to the curl_socket_callback's forth argument, the userp pointer. This is not used by libcurl but only passed-thru as-is. Set the callback pointer with \fICURLMOPT_SOCKETFUNCTION\fP. +.IP CURLMOPT_PIPELINING +Pass a long set to 1 to enable or 0 to disable. Enabling pipelining on a multi +handle will make it attempt to perform HTTP Pipelining as far as possible for +transfers using this handle. This means that if you add a second request that +can use an already existing connection, the second request will be \&"piped" +on the same connection rather than being executed in parallell. (Added in +7.16.0) .SH RETURNS The standard CURLMcode for multi interface error codes. Note that it returns a CURLM_UNKNOWN_OPTION if you try setting an option that this version of libcurl |