summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-04-19 14:49:21 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-04-21 08:20:24 +0200
commit9c18c0b4dd8f00ed60f0c1994138afe556428114 (patch)
treef3138cd44b602f5aaf3e33106b1daabc3820d6b5
parent605e8423554e6c53c7755805f18354973b563b16 (diff)
downloadcurl-9c18c0b4dd8f00ed60f0c1994138afe556428114.tar.gz
multi: don't close connection HTTP_1_1_REQUIRED
The ConnectionExists() function will note that the new transfer wants less then h2 and that it can't multiplex it and therefor opt to open a new connection instead.
-rw-r--r--lib/multi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/multi.c b/lib/multi.c
index eac918b9a..99600a3ba 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -2158,7 +2158,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
if(!ret) {
infof(data, "Downgrades to HTTP/1.1!\n");
- connclose(data->conn, "Disconnect HTTP/2 for HTTP/1");
+ streamclose(data->conn, "Disconnect HTTP/2 for HTTP/1");
data->state.httpwant = CURL_HTTP_VERSION_1_1;
/* clear the error message bit too as we ignore the one we got */
data->state.errorbuf = FALSE;