diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-05-11 11:41:10 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-05-18 09:33:47 +0200 |
commit | 72105ebf0565761c38805ba699b25d8c5520ffb0 (patch) | |
tree | cec40ae439d767db5546042f51dcd8e152c1cfe1 /lib/multihandle.h | |
parent | 38bd6bf0bb4ffc031c8d810f103d6ec1bc7fbb90 (diff) | |
download | curl-72105ebf0565761c38805ba699b25d8c5520ffb0.tar.gz |
http2: set default concurrency, fix ConnectionExists for multiplex
Diffstat (limited to 'lib/multihandle.h')
-rw-r--r-- | lib/multihandle.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/multihandle.h b/lib/multihandle.h index 13b32d8fe..cad44d1df 100644 --- a/lib/multihandle.h +++ b/lib/multihandle.h @@ -102,6 +102,8 @@ struct Curl_multi { /* pipelining wanted bits (CURLPIPE*) */ long pipelining; + bool recheckstate; /* see Curl_multi_connchanged */ + /* Shared connection cache (bundles)*/ struct conncache conn_cache; @@ -144,4 +146,3 @@ struct Curl_multi { }; #endif /* HEADER_CURL_MULTIHANDLE_H */ - |