From 08fd1829e0e01cd9cee3a7da60d315f11aa591c8 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 7 Oct 2007 08:28:03 +0000 Subject: Known bug #47, which confused libcurl if doing NTLM auth over a proxy with a response that was larger than 16KB is now improved slightly so that now the restriction at 16KB is for the headers only and it should be a rare situation where the response-headers exceed 16KB. Thus, I consider #47 fixed and the header limitation is now known as known bug #48. --- lib/http.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') diff --git a/lib/http.c b/lib/http.c index 90f56f1ba..babd406d8 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1342,6 +1342,8 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, if(keepon > TRUE) { /* This means we are currently ignoring a response-body */ + + nread = 0; /* make next read start over in the read buffer */ if(cl) { /* A Content-Length based body: simply count down the counter and make sure to break out of the loop when we're done! */ @@ -1399,6 +1401,8 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, if(('\r' == line_start[0]) || ('\n' == line_start[0])) { /* end of response-headers from the proxy */ + nread = 0; /* make next read start over in the read + buffer */ if((407 == k->httpcode) && !data->state.authproblem) { /* If we get a 407 response code with content length when we have no auth problem, we must ignore the -- cgit v1.2.3