aboutsummaryrefslogtreecommitdiffstats
path: root/etypes.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-14 01:17:44 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-14 01:17:44 +0000
commitf1fe80dce7362ab6057ef570f2f7fe7286fbf7d1 (patch)
treeee4400dbef9936264ee3ffc80a744a2a34d37366 /etypes.h
parent67b8a57f6e37a1e4db1efe30e01b97b992fd044b (diff)
From Dinesh Dutt:
- Decoders for the few remaining FC protocols not included in my first patch. Included in this list are decoders for FC-CT (common transport), Name Server (dNS), Fabric Configuration Server (FCS) and Zone Server (FZS). - Decoder for MDS Debug Port Adapter. MDS Debug Port Adapter (internal name was Boardwalk and this is the file name) is a piece of hardware that can be purchased with Cisco's MDS Fibre Channel switches that converts FC frames into Ethernet frames. One end is connected to a port on a FC switch and the other end is connected to a FE/GE Ethernet port. The decoder included here decodes the encapsulation header that carries information such as SOF/EOF of FC frames. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6919 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'etypes.h')
-rw-r--r--etypes.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/etypes.h b/etypes.h
index 2aaa3bcce5..d0b8b9d146 100644
--- a/etypes.h
+++ b/etypes.h
@@ -1,7 +1,7 @@
/* etypes.h
* Defines ethernet packet types, similar to tcpdump's ethertype.h
*
- * $Id: etypes.h,v 1.29 2003/01/11 10:16:22 guy Exp $
+ * $Id: etypes.h,v 1.30 2003/01/14 01:17:44 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -187,6 +187,10 @@
#define ETHERTYPE_LOOP 0x9000 /* used for layer 2 testing (do i see my own frames on the wire) */
#endif
+#ifndef ETHERTYPE_BRDWALK
+#define ETHERTYPE_BRDWALK 0x88AE
+#endif
+
extern const value_string etype_vals[];
#endif /* etypes.h */