Commit bbb05069 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

HTC_S_OVERFLOW is a valid response from the "are_we_there_yet" function.

parent 23870541
......@@ -259,6 +259,10 @@ SES_RxReq(const struct worker *wrk, struct req *req, htc_complete_f *func)
return (HTC_S_OVERFLOW);
}
hs = func(req->htc);
if (hs == HTC_S_OVERFLOW) {
WS_ReleaseP(req->htc->ws, req->htc->rxbuf_b);
return (HTC_S_OVERFLOW);
}
if (hs == HTC_S_JUNK) {
WS_ReleaseP(req->htc->ws, req->htc->rxbuf_b);
return (HTC_S_JUNK);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment