aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ip.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-04-20 07:05:58 +0000
committerGuy Harris <guy@alum.mit.edu>2000-04-20 07:05:58 +0000
commitedd1f261709079cbe0ebe7f9bb8b447a250271c5 (patch)
treec53d7501daab4f29fddb7a458d040b7799b4eea9 /packet-ip.h
parentc2a68f6b86c75772f44e15b5d926ea25966e9241 (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). svn path=/trunk/; revision=1882
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