aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ip.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-20 07:05:58 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-20 07:05:58 +0000
commitbb5f2a5810d9aa5a18ac0ea315a8ad8f746ff400 (patch)
treec53d7501daab4f29fddb7a458d040b7799b4eea9 /packet-ip.h
parent6b7a143a43b87d409bb75c9abda32261c38c4866 (diff)
Have the IPv6 dissector use the same dissector table as the IPv4
dissector. Don't dissect the payload of any fragmented IPv6 packet unless it's the initial fragment (that's what we do for IPv4). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1882 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ip.h')
-rw-r--r--packet-ip.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-ip.h b/packet-ip.h
index 24f94d58e0..025b7a201c 100644
--- a/packet-ip.h
+++ b/packet-ip.h
@@ -1,7 +1,7 @@
/* packet-ip.h
* Definitions for IP packet disassembly structures and routines
*
- * $Id: packet-ip.h,v 1.11 2000/02/15 21:02:18 gram Exp $
+ * $Id: packet-ip.h,v 1.12 2000/04/20 07:05:54 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -83,4 +83,7 @@ typedef struct ip_tcp_opt {
void dissect_ip_tcp_options(const u_char *, int, guint,
const ip_tcp_opt *, int, int, proto_tree *);
+/* Dissector table for "ip.proto"; used by IPv6 as well as IPv4 */
+dissector_table_t ip_dissector_table;
+
#endif