Closed GoogleCodeExporter closed 9 years ago
The reply is being parsed and handled, but fwdComplete() isn't called until the
upstream socket times out. The http code thinks more data is coming and thus
schedules a read.
httpState->chunk_size is -1; httpState->eof is 0. Thus the complete flag set in
src/http.c (specifically line 886/887) never gets set.
Original comment by adrian.c...@gmail.com
on 29 Jun 2009 at 4:13
The root problem is that httpReplyBodySize() is behaving incorrectly. It skips
all of
the status line checks and returns a size of -1.
This is most likely a hold-over from the method modifications done in
Squid-2.HEAD.
Original comment by adrian.c...@gmail.com
on 29 Jun 2009 at 4:15
Fixed in r14103.
Original comment by adrian.c...@gmail.com
on 29 Jun 2009 at 4:29
Original issue reported on code.google.com by
adrian.c...@gmail.com
on 29 Jun 2009 at 4:12