diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-01-25 00:06:12 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-01-25 00:06:12 +0000 |
commit | 646e0dbc298cbce9faf09d128ca4db2128e3c9c0 (patch) | |
tree | 0d6caba69130def17f192785e4dc2ff9f32a7a65 /packet-llc.c | |
parent | a245e3742ddc653545ab2f8d99a06f7bb41ffdec (diff) | |
download | wireshark-646e0dbc298cbce9faf09d128ca4db2128e3c9c0.tar.gz wireshark-646e0dbc298cbce9faf09d128ca4db2128e3c9c0.tar.bz2 wireshark-646e0dbc298cbce9faf09d128ca4db2128e3c9c0.zip |
From Dave Richards: BACNET-over-ARCNET is BACNET-over-802.2-over-ARCNET,
not BACNET-directly-over-ARCNET.
svn path=/trunk/; revision=7000
Diffstat (limited to 'packet-llc.c')
-rw-r--r-- | packet-llc.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/packet-llc.c b/packet-llc.c index ec29413a01..ee35d264da 100644 --- a/packet-llc.c +++ b/packet-llc.c @@ -2,7 +2,7 @@ * Routines for IEEE 802.2 LLC layer * Gilbert Ramirez <gram@alumni.rice.edu> * - * $Id: packet-llc.c,v 1.105 2002/12/10 02:49:31 guy Exp $ + * $Id: packet-llc.c,v 1.106 2003/01/25 00:06:12 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -35,6 +35,7 @@ #include "llcsaps.h" #include "bridged_pids.h" #include "ppptypes.h" +#include "arcnet_pids.h" #include "packet-fc.h" #include "packet-ip.h" #include "packet-ipx.h" @@ -563,4 +564,10 @@ proto_reg_handoff_llc(void) dissector_add("udp.port", UDP_PORT_LLC5, llc_handle); /* IP-over-FC when we have the full FC frame */ dissector_add("fc.ftype", FC_FTYPE_IP, llc_handle); + + /* + * BACNET-over-ARCNET is really BACNET-over-802.2 LLC-over-ARCNET, + * apparently. + */ + dissector_add("arcnet.protocol_id", ARCNET_PROTO_BACNET, llc_handle); } |