Fixes reassembly of chunked http-responses spanning multiple tcp segments

(bugs 1581,1851 and 1868)


svn path=/trunk/; revision=23061
This commit is contained in:
Sake Blok 2007-10-03 17:07:19 +00:00
parent f95de28c72
commit a4decea55b
1 changed files with 1 additions and 3 deletions

View File

@ -336,9 +336,7 @@ req_resp_hdrs_do_reassembly(tvbuff_t *tvb, int offset, packet_info *pinfo,
* trailing CRLF.
*/
pinfo->desegment_offset = offset;
pinfo->desegment_len =
chunk_size + 1 -
reported_length_remaining;
pinfo->desegment_len = DESEGMENT_ONE_MORE_SEGMENT;
return FALSE;
}
}