aboutsummaryrefslogtreecommitdiffstats
path: root/packet-arp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-10-18 21:00:01 +0000
committerGuy Harris <guy@alum.mit.edu>2002-10-18 21:00:01 +0000
commit27df774d0b8e57ae9ee7e5589d7e4cc9a54268e1 (patch)
tree6584b5fe66afe4a5adb5bda9211cf61ed2a3c6ce /packet-arp.c
parent5b99f89521eb3b4a08cc274163736b667a8e76cc (diff)
From Peter Fales: ARCNET support.
Sort the lists of dissectors in the DISSECTOR_SRC macros in "Makefile.am" and "Makefile.nmake". svn path=/trunk/; revision=6450
Diffstat (limited to 'packet-arp.c')
-rw-r--r--packet-arp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-arp.c b/packet-arp.c
index 2093764e1c..45b73dfe76 100644
--- a/packet-arp.c
+++ b/packet-arp.c
@@ -1,7 +1,7 @@
/* packet-arp.c
* Routines for ARP packet disassembly
*
- * $Id: packet-arp.c,v 1.53 2002/08/28 21:00:07 jmayer Exp $
+ * $Id: packet-arp.c,v 1.54 2002/10/18 20:59:57 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -33,6 +33,7 @@
#include <epan/resolv.h>
#include "packet-arp.h"
#include "etypes.h"
+#include "arcnet_pids.h"
static int proto_arp = -1;
static int hf_arp_hard_type = -1;
@@ -994,4 +995,5 @@ proto_reg_handoff_arp(void)
arp_handle = create_dissector_handle(dissect_arp, proto_arp);
dissector_add("ethertype", ETHERTYPE_ARP, arp_handle);
dissector_add("ethertype", ETHERTYPE_REVARP, arp_handle);
+ dissector_add("arcnet.protocol_id", ARCNET_PROTO_ARP, arp_handle);
}