Wireshark-bugs: [Wireshark-bugs] [Bug 11104] Wireshark show the HTTP response before request

Date: Fri, 03 Apr 2015 09:01:17 +0000

changed bug 11104


What Removed Added
CC   [email protected]

Comment # 3 on bug 11104 from
There is a Content-Type header but no Content-Length. It means that we cannot
know what's the size of the payload for reassembly and our code waits for FIN
flag in this case:
/* We found a content-type but no content-length.
 * This is probably a HTTP header for a session with
 * only one HTTP PDU and where the content spans
 * until the end of the tcp session, unless there
 * is a keepalive header present in which case we
 * assume there is no message body at all and thus
 * we won't do any reassembly.
 * Set up tcp reassembly until the end of this session.
 */
Not sure this should be considered as a bug but I'm not an HTTP expert so there
might be smarter ways to detect this use case.


You are receiving this mail because:
  • You are watching all bug changes.