aboutsummaryrefslogtreecommitdiffstats
path: root/etypes.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2003-03-02 15:50:55 +0000
committerGerald Combs <gerald@wireshark.org>2003-03-02 15:50:55 +0000
commit6d3aa0ef575746a4534f1b5123f37cfea4f820e5 (patch)
tree3731dc37cc350fd51a32ffbbe4f0110ee6e71d1d /etypes.h
parent3aa593f0d542a773e036806861c8618bc0195ae4 (diff)
Even though we don't yet dissect Intel ANS (NIC teaming) or Microsoft
Network Load Balancing probes, we can at least recognize them as such. svn path=/trunk/; revision=7247
Diffstat (limited to 'etypes.h')
-rw-r--r--etypes.h18
1 files changed, 13 insertions, 5 deletions
diff --git a/etypes.h b/etypes.h
index d0b8b9d146..10762fb417 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.30 2003/01/14 01:17:44 guy Exp $
+ * $Id: etypes.h,v 1.31 2003/03/02 15:50:55 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -175,6 +175,14 @@
#define ETHERTYPE_PPPOES 0x8864 /* PPPoE Session Protocol */
#endif
+#ifndef ETHERTYPE_INTEL_ANS
+#define ETHERTYPE_INTEL_ANS 0x886d /* Intel ANS (NIC teaming) http://www.intel.com/support/network/adapter/ans/probes.htm */
+#endif
+
+#ifndef ETHERTYPE_MS_NLB_HEARTBEAT
+#define ETHERTYPE_MS_NLB_HEARTBEAT 0x886f /* MS Network Load Balancing heartbeat http://www.microsoft.com/technet/treeview/default.asp?url=/TechNet/prodtechnol/windows2000serv/deploy/confeat/nlbovw.asp */
+#endif
+
#ifndef ETHERTYPE_EAPOL
#define ETHERTYPE_EAPOL 0x888e /* 802.1x Authentication */
#endif
@@ -183,14 +191,14 @@
#define ETHERTYPE_HYPERSCSI 0x889A /* HyperSCSI */
#endif
-#ifndef ETHERTYPE_LOOP
-#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
+#ifndef ETHERTYPE_LOOP
+#define ETHERTYPE_LOOP 0x9000 /* used for layer 2 testing (do i see my own frames on the wire) */
+#endif
+
extern const value_string etype_vals[];
#endif /* etypes.h */