aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipv6.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-23 09:39:33 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-23 09:39:33 +0000
commit2ff870e19a20c01b77098d1b78cc26e6f313d5b3 (patch)
tree77186902b4c6427515ec143749513b449e11b7c1 /packet-ipv6.c
parent950f0120733fad4ee70c2b9f7b55cea5668f2d3b (diff)
Support Appletalk, IPv6, and Banyan Vines over ARCNET.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6987 f5534014-38df-0310-8fa8-9805f1628bb7
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);
}