libhtp fix for response body processing. Increment data counter for response body processing when no contentlength or chunked scheme is used but the server closes the connection

remotes/origin/HEAD
Anoop Saldanha 14 years ago committed by Victor Julien
parent b976ff228a
commit 1f0272afeb

@ -238,6 +238,7 @@ int htp_connp_RES_BODY_IDENTITY(htp_connp_t *connp) {
return HTP_OK;
}
} else {
d.len++;
// We don't know the length of the response body, which means
// that the body will consume all data until the connection
// is closed.

Loading…
Cancel
Save