From b360df36c56bbdd0da7ecdacdf8dc2a9c98cd053 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 22 Oct 2021 10:57:54 +0200 Subject: c-hyper: don't abort CONNECT responses early when auth-in-progress ... and make sure to stop ignoring the body once the CONNECT is done. This should make test 206 work proper again and not be flaky. --- lib/c-hyper.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/c-hyper.c') diff --git a/lib/c-hyper.c b/lib/c-hyper.c index 38071e832..c691544b7 100644 --- a/lib/c-hyper.c +++ b/lib/c-hyper.c @@ -205,7 +205,8 @@ static int hyper_body_chunk(void *userdata, const hyper_buf *chunk) k->exp100 = EXP100_FAILED; } } - if(data->state.hconnect && (data->req.httpcode/100 != 2)) { + if(data->state.hconnect && (data->req.httpcode/100 != 2) && + data->state.authproxy.done) { done = TRUE; result = CURLE_OK; } -- cgit v1.2.1