summaryrefslogtreecommitdiff
path: root/packet-tcp.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-04-23 10:20:29 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-04-23 10:20:29 +0000
commitcb5e97d49a35b6138951007b6353619ae1fcc254 (patch)
treec98f4e485250f56167f3dad690e57fcc64d240d8 /packet-tcp.h
parent1b872b3648180aa042e36dd5b3ff38a03fa131e3 (diff)
downloadwireshark-cb5e97d49a35b6138951007b6353619ae1fcc254.tar.gz
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-tcp.h')
-rw-r--r--packet-tcp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-tcp.h b/packet-tcp.h
index 3ce804984d..dcc5600355 100644
--- a/packet-tcp.h
+++ b/packet-tcp.h
@@ -1,6 +1,6 @@
/* packet-tcp.h
*
- * $Id: packet-tcp.h,v 1.14 2003/03/03 23:20:57 sahlberg Exp $
+ * $Id: packet-tcp.h,v 1.15 2003/04/23 10:20:29 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -85,6 +85,6 @@ tcp_dissect_pdus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
void (*dissect_pdu)(tvbuff_t *, packet_info *, proto_tree *));
extern void decode_tcp_ports(tvbuff_t *, int, packet_info *,
- proto_tree *, int, int);
+ proto_tree *, int, int, guint32);
#endif