diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-02-11 17:25:48 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-02-12 14:40:37 +0100 |
commit | 61496154ce8a6a24213cf3e8d4efcf2378dd4fc0 (patch) | |
tree | 47af7d1e5480f1af51c50ccc12793155a9aae0ab /lib/multi.c | |
parent | 4854b344e79babe1c7741fe94ac8d3efa12f26dc (diff) |
http2: multi_connchanged() moved from multi.c, only used for h2
Closes #3557
Diffstat (limited to 'lib/multi.c')
-rw-r--r-- | lib/multi.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/multi.c b/lib/multi.c index cd9d758ca..313304893 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -1155,17 +1155,6 @@ CURLMcode curl_multi_wait(struct Curl_multi *multi, { return Curl_multi_wait(multi, extra_fds, extra_nfds, timeout_ms, ret, NULL); } -/* - * Curl_multi_connchanged() is called to tell that there is a connection in - * this multi handle that has changed state (pipelining become possible, the - * number of allowed streams changed or similar), and a subsequent use of this - * multi handle should move CONNECT_PEND handles back to CONNECT to have them - * retry. - */ -void Curl_multi_connchanged(struct Curl_multi *multi) -{ - multi->recheckstate = TRUE; -} /* * multi_ischanged() is called |