aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcp.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-12 22:53:16 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-12 22:53:16 +0000
commit245c4eaab54271bb881d5a0a52564117a286de14 (patch)
treec8532731900da17a24d9529fb203a39c853775e3 /packet-tcp.h
parent96766c3057886a37707326451d5e0eaaf9bc07b6 (diff)
Jeff Foster's SOCKS dissector, support for associating dissectors
with conversations and having TCP and UDP check whether a packet is part of a conversation with a dissector and, if so, using that dissector on the conversation, and "ethertype()"-style support for allowing a dissector to call a sub-dissector via the same path that the TCP and UDP dissectors use, based on port numbers supplied by that dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1837 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-tcp.h')
-rw-r--r--packet-tcp.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-tcp.h b/packet-tcp.h
index ee77c53248..d57793e0ec 100644
--- a/packet-tcp.h
+++ b/packet-tcp.h
@@ -1,6 +1,6 @@
/* packet-tcp.h
*
- * $Id: packet-tcp.h,v 1.2 2000/04/08 03:32:10 guy Exp $
+ * $Id: packet-tcp.h,v 1.3 2000/04/12 22:53:15 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -25,4 +25,7 @@
/* Urgent pointer value for the current packet. */
extern guint16 tcp_urgent_pointer;
+extern void decode_tcp_ports(const u_char *, int, frame_data *,
+ proto_tree *, int, int);
+
void dissect_tcp(const u_char *, int, frame_data *, proto_tree *);