https://bz.apache.org/bugzilla/show_bug.cgi?id=61301
--- Comment #16 from Luca Toscano <[email protected]> --- (In reply to Yann Ylavic from comment #10) > Created attachment 35407 [details] > Read more when body buffer is full > > This seems to work for me... Hi Yann, it works for me too :) I don't particularly like the goto statement in general but in the context of the current ab code it seems a good solution to the problem. I'd have used a more restrictive if condition like the following (since I didn't find any issue with the plain http use case) but I don't think it changes much: + if (c->ssl && SSL_pending(c->ssl)) { + goto read_more; + } Looks like the problem is solved! -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
