diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-10-21 19:44:29 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-10-22 12:54:00 +0200 |
commit | cf088201a974f0cf7afd03f0dc4fe27b6c8c2b31 (patch) | |
tree | 7d3a7e177a15f9e19ebc67d4652ddb2606c604b8 /lib | |
parent | a76f3c592b682d8e30779f7379883453871cfdf9 (diff) | |
download | curl-cf088201a974f0cf7afd03f0dc4fe27b6c8c2b31.tar.gz |
c-hyper: make test 217 run
Closes #7889
Diffstat (limited to 'lib')
-rw-r--r-- | lib/c-hyper.c | 6 | ||||
-rw-r--r-- | lib/http_proxy.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lib/c-hyper.c b/lib/c-hyper.c index 7ce958adb..38071e832 100644 --- a/lib/c-hyper.c +++ b/lib/c-hyper.c @@ -260,6 +260,12 @@ static CURLcode status_line(struct Curl_easy *data, if(http_version == HYPER_HTTP_VERSION_1_0) data->state.httpwant = CURL_HTTP_VERSION_1_0; + if(data->state.hconnect) + /* CONNECT */ + data->info.httpproxycode = http_status; + + /* We need to set 'httpcodeq' for functions that check the response code in + a single place. */ data->req.httpcode = http_status; result = Curl_http_statusline(data, conn); diff --git a/lib/http_proxy.c b/lib/http_proxy.c index 8fc9c6222..2969c859d 100644 --- a/lib/http_proxy.c +++ b/lib/http_proxy.c @@ -210,6 +210,8 @@ static void connect_done(struct Curl_easy *data) /* restore the protocol pointer */ data->req.p.http = s->prot_save; s->prot_save = NULL; + data->info.httpcode = 0; /* clear it as it might've been used for the + proxy */ infof(data, "CONNECT phase completed!"); } } @@ -964,7 +966,6 @@ static CURLcode CONNECT(struct Curl_easy *data, result = CURLE_OK; if(s->tunnel_state == TUNNEL_COMPLETE) { - data->info.httpproxycode = data->req.httpcode; if(data->info.httpproxycode/100 != 2) { if(conn->bits.close && data->req.newurl) { conn->bits.proxy_connect_closed = TRUE; |