aboutsummaryrefslogtreecommitdiffstats
path: root/etypes.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-03-05 07:41:24 +0000
committerGuy Harris <guy@alum.mit.edu>2003-03-05 07:41:24 +0000
commit6e797c5b9d54c505b25c3176931e8b8c791b3d88 (patch)
tree5634648b5b883a8241dc6722048c66e9bf1d42c0 /etypes.h
parent05c41a279fb9e2df3ded86aece0470c1b1aad887 (diff)
From Dinesh Dutt:
fix the Fibre Channel reassembly code; fix handling of addresses in FC frames encapsulated inside various internal Cisco protocols; display link state records & descriptors better so as to improve readability & reduce the need to expand tree to find useful information; handle older versions of SW_RSCN; fix saving of device type from Inquiry command; add another Ethertype used internally in Cisco switches. svn path=/trunk/; revision=7283
Diffstat (limited to 'etypes.h')
-rw-r--r--etypes.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/etypes.h b/etypes.h
index 10762fb417..efb4f354be 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.31 2003/03/02 15:50:55 gerald Exp $
+ * $Id: etypes.h,v 1.32 2003/03/05 07:41:23 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -199,6 +199,11 @@
#define ETHERTYPE_LOOP 0x9000 /* used for layer 2 testing (do i see my own frames on the wire) */
#endif
+#ifndef ETHERTYPE_FCFT
+/* type used to transport FC frames+MDS hdr internal to Cisco's MDS switch */
+#define ETHERTYPE_FCFT 0xFCFC
+#endif
+
extern const value_string etype_vals[];
#endif /* etypes.h */