diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-05-12 14:18:46 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-05-18 09:33:47 +0200 |
commit | 811443754ac2d721487ad2013740eda8f683ede8 (patch) | |
tree | 23c42dbf26fb5b96f98fd80ec8b07de643ea44c2 /include | |
parent | df3a970cb40ee0cb1a390b29bf83e6759229ce32 (diff) |
CURLOPT_PIPEWAIT: added
By setting this option to 1 libcurl will wait for a connection to reveal
if it is possible to pipeline/multiplex on before it continues.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 9ef753140..727f19a4f 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1638,6 +1638,9 @@ typedef enum { /* Service Name */ CINIT(SERVICE_NAME, OBJECTPOINT, 236), + /* Wait/don't wait for pipe/mutex to clarify */ + CINIT(PIPEWAIT, LONG, 237), + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |