Re: [Wireshark-dev] question about TCP flag DESEGMENT_UNTIL_FIN

2007-08-01 Thread Guy Harris
yin sun wrote: > Hello, > I found out that, > When a subdissector on top of TCP set >if (pinfo->can_desegment) { > pinfo->desegment_len = DESEGMENT_UNTIL_FIN; > return; > } > when pinfo->can_desegment is 0 again, subdissector received the whole > TCP stream in tvb minus

[Wireshark-dev] question about TCP flag DESEGMENT_UNTIL_FIN

2007-07-31 Thread yin sun
Hello, I found out that, When a subdissector on top of TCP set if (pinfo->can_desegment) { pinfo->desegment_len = DESEGMENT_UNTIL_FIN; return; } when pinfo->can_desegment is 0 again, subdissector received the whole TCP stream in tvb minus the payload from the FIN packet. Is