diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-01-23 09:54:54 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-01-23 09:54:54 +0000 |
commit | 94aa5a707c2c87d1ba22feaa0fd222f90e6cb5a8 (patch) | |
tree | 6d7a265a8830c8c2594d98e6f42a7aa2fddc2430 /packet-arcnet.c | |
parent | 6d3d3efa150fc47be14d64df0bd9a77c3f305dbe (diff) | |
download | wireshark-94aa5a707c2c87d1ba22feaa0fd222f90e6cb5a8.tar.gz wireshark-94aa5a707c2c87d1ba22feaa0fd222f90e6cb5a8.tar.bz2 wireshark-94aa5a707c2c87d1ba22feaa0fd222f90e6cb5a8.zip |
Support BACNET over ARCNET, under the assumption that no fragmentation
is done.
Support "Novell EC" over ARCNET, under the assumption that it's just
another way of sending IPX over ARCNET.
svn path=/trunk/; revision=6988
Diffstat (limited to 'packet-arcnet.c')
-rw-r--r-- | packet-arcnet.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-arcnet.c b/packet-arcnet.c index 6b623c603f..71c10089b6 100644 --- a/packet-arcnet.c +++ b/packet-arcnet.c @@ -2,7 +2,7 @@ * Routines for arcnet dissection * Copyright 2001-2002, Peter Fales <ethereal@fales-lorenz.net> * - * $Id: packet-arcnet.c,v 1.7 2003/01/23 09:04:54 guy Exp $ + * $Id: packet-arcnet.c,v 1.8 2003/01/23 09:54:54 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -182,6 +182,7 @@ dissect_arcnet_common (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, case ARCNET_PROTO_IP_1051: case ARCNET_PROTO_ARP_1051: case ARCNET_PROTO_DIAGNOSE: + case ARCNET_PROTO_BACNET: /* XXX - no fragmentation? */ /* No fragmentation stuff in the header */ break; |