summaryrefslogtreecommitdiff
path: root/llc.h
diff options
context:
space:
mode:
authorguy <guy>2001-01-28 09:46:42 +0000
committerguy <guy>2001-01-28 09:46:42 +0000
commit8cba55d69251f64ffa9f169d9a1d6ab2904cb96a (patch)
tree920f55014faaa8114678ebe3ad3fab3e98ce7a9a /llc.h
parenta85f215bc46e77431686774c2446e104f85c5718 (diff)
downloadtcpdump-8cba55d69251f64ffa9f169d9a1d6ab2904cb96a.tar.gz
Document the "netbeui" filter expression keyword.
Add a #define LLCSAP_NETBEUI for the NetBEUI LLC SAP, and use that rather than "0xf0" in the LLC dissector.
Diffstat (limited to 'llc.h')
-rw-r--r--llc.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/llc.h b/llc.h
index de185c8e..b812bf1c 100644
--- a/llc.h
+++ b/llc.h
@@ -18,7 +18,7 @@
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * @(#) $Header: /tcpdump/master/tcpdump/llc.h,v 1.9 2001-01-15 00:33:59 guy Exp $ (LBL)
+ * @(#) $Header: /tcpdump/master/tcpdump/llc.h,v 1.10 2001-01-28 09:46:42 guy Exp $ (LBL)
*/
/*
@@ -115,9 +115,12 @@ struct llc {
#ifndef LLCSAP_SNAP
#define LLCSAP_SNAP 0xaa
#endif
-#ifndef LLCSAP_ISONS
-#define LLCSAP_ISONS 0xfe
-#endif
#ifndef LLCSAP_IPX
#define LLCSAP_IPX 0xe0
#endif
+#ifndef LLCSAP_NETBEUI
+#define LLCSAP_NETBEUI 0xf0
+#endif
+#ifndef LLCSAP_ISONS
+#define LLCSAP_ISONS 0xfe
+#endif