diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-04-23 10:20:29 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-04-23 10:20:29 +0000 |
commit | cb5e97d49a35b6138951007b6353619ae1fcc254 (patch) | |
tree | c98f4e485250f56167f3dad690e57fcc64d240d8 /packet-msproxy.c | |
parent | 1b872b3648180aa042e36dd5b3ff38a03fa131e3 (diff) | |
download | wireshark-cb5e97d49a35b6138951007b6353619ae1fcc254.tar.gz wireshark-cb5e97d49a35b6138951007b6353619ae1fcc254.tar.bz2 wireshark-cb5e97d49a35b6138951007b6353619ae1fcc254.zip |
Update to TCP to handle hints from dissectors where the next PDU may start.
ONCRPC dissector updated to provide hint to TCP where the next RPCoverTCP
PDU starts as example.
Trivial updates to the other TCP based protocols required to amke them handle
this as well. See the updates to packet-rpc.c as an example.
This is enabled by activating tcp analysis and provides hints to TCP to know where PDUs starts when not aligned to the start of the segment.
svn path=/trunk/; revision=7543
Diffstat (limited to 'packet-msproxy.c')
-rw-r--r-- | packet-msproxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-msproxy.c b/packet-msproxy.c index 84db4f44c3..08295bc5d3 100644 --- a/packet-msproxy.c +++ b/packet-msproxy.c @@ -2,7 +2,7 @@ * Routines for Microsoft Proxy packet dissection * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com> * - * $Id: packet-msproxy.c,v 1.32 2002/08/28 21:00:22 jmayer Exp $ + * $Id: packet-msproxy.c,v 1.33 2003/04/23 10:20:29 sahlberg Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -245,7 +245,7 @@ static void msproxy_sub_dissector( tvbuff_t *tvb, packet_info *pinfo, if ( redirect_info->proto == PT_TCP) decode_tcp_ports( tvb, 0, pinfo, tree, pinfo->srcport, - pinfo->destport); + pinfo->destport, 0); else decode_udp_ports( tvb, 0, pinfo, tree, pinfo->srcport, pinfo->destport); |