aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcp.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-11-08 05:47:12 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-11-08 05:47:12 +0000
commit66eb2b35fa67c994fff4e8c1d2d26c42541e4b62 (patch)
tree616cbf0ab5665d928e312f65340365f2a620c993 /packet-tcp.h
parent7fd5a8293cdf4b34d702e09f3315b2de52d39a97 (diff)
Have "decode_tcp_ports()" handle only the handoff to a subdissector -
and have it return TRUE if we succeeded, FALSE otherwise - and have an internal "process_tcp_payload()" routine handle the (TCP-specific) PDU tracking and sequence number analysis, with an argument to indicate whether it should do that or not (i.e., whether it's being handed a TCP segment or reassembled data). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8914 f5534014-38df-0310-8fa8-9805f1628bb7
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 0c621b9812..b05b5f99ab 100644
--- a/packet-tcp.h
+++ b/packet-tcp.h
@@ -1,6 +1,6 @@
/* packet-tcp.h
*
- * $Id: packet-tcp.h,v 1.19 2003/11/08 00:02:56 guy Exp $
+ * $Id: packet-tcp.h,v 1.20 2003/11/08 05:47:12 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -84,7 +84,7 @@ tcp_dissect_pdus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
guint (*get_pdu_len)(tvbuff_t *, int),
void (*dissect_pdu)(tvbuff_t *, packet_info *, proto_tree *));
-extern void decode_tcp_ports(tvbuff_t *, int, packet_info *,
+extern gboolean decode_tcp_ports(tvbuff_t *, int, packet_info *,
proto_tree *, int, int);
#endif