aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipv6.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-23 09:39:33 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-23 09:39:33 +0000
commit6d3d3efa150fc47be14d64df0bd9a77c3f305dbe (patch)
tree77186902b4c6427515ec143749513b449e11b7c1 /packet-ipv6.c
parent5b1484f7b3e245f9d21d4702efbb201f02f72f48 (diff)
Support Appletalk, IPv6, and Banyan Vines over ARCNET.
svn path=/trunk/; revision=6987
Diffstat (limited to 'packet-ipv6.c')
-rw-r--r--packet-ipv6.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-ipv6.c b/packet-ipv6.c
index ec561be51f..bc90fb0521 100644
--- a/packet-ipv6.c
+++ b/packet-ipv6.c
@@ -1,7 +1,7 @@
/* packet-ipv6.c
* Routines for IPv6 packet disassembly
*
- * $Id: packet-ipv6.c,v 1.91 2002/12/19 11:22:29 sahlberg Exp $
+ * $Id: packet-ipv6.c,v 1.92 2003/01/23 09:39:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -43,6 +43,7 @@
#include "ppptypes.h"
#include "aftypes.h"
#include "nlpid.h"
+#include "arcnet_pids.h"
/*
* NOTE: ipv6.nxt is not very useful as we will have chained header.
@@ -1210,4 +1211,5 @@ proto_reg_handoff_ipv6(void)
dissector_add("chdlctype", ETHERTYPE_IPv6, ipv6_handle);
dissector_add("fr.ietf", NLPID_IP6, ipv6_handle);
dissector_add("x.25.spi", NLPID_IP6, ipv6_handle);
+ dissector_add("arcnet.protocol_id", ARCNET_PROTO_IPv6, ipv6_handle);
}