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/http.c | |
parent | 38bd6bf0bb4ffc031c8d810f103d6ec1bc7fbb90 (diff) | |
download | curl-72105ebf0565761c38805ba699b25d8c5520ffb0.tar.gz |
http2: set default concurrency, fix ConnectionExists for multiplex
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/http.c b/lib/http.c index 28da5c47b..c3d72b759 100644 --- a/lib/http.c +++ b/lib/http.c @@ -176,6 +176,8 @@ CURLcode Curl_http_setup_conn(struct connectdata *conn) http->len = BUFSIZE; http->memlen = 0; + Curl_http2_setup_conn(conn); + return CURLE_OK; } |