diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-05-08 10:43:36 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-05-18 08:57:18 +0200 |
commit | 02ec1ced9ba3bf70f6198b39c39b15fc80c97f09 (patch) | |
tree | 8fd01a81dcdca7045527a97db9af3a04e5c761f7 /include | |
parent | 2ce2f03007cca9e3d8cc1b481ae7c4489c111741 (diff) | |
download | curl-02ec1ced9ba3bf70f6198b39c39b15fc80c97f09.tar.gz |
CURLMOPT_PIPELINE: bit 1 is for multiplexing
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/multi.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/curl/multi.h b/include/curl/multi.h index 3c4acb0f6..0d859f8fd 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -74,6 +74,11 @@ typedef enum { curl_multi_perform() and CURLM_CALL_MULTI_PERFORM */ #define CURLM_CALL_MULTI_SOCKET CURLM_CALL_MULTI_PERFORM +/* bitmask bits for CURLMOPT_PIPELINING */ +#define CURLPIPE_NOTHING 0L +#define CURLPIPE_HTTP1 1L +#define CURLPIPE_MULTIPLEX 2L + typedef enum { CURLMSG_NONE, /* first, not used */ CURLMSG_DONE, /* This easy handle has completed. 'result' contains |