xref: /freebsd/contrib/libpcap/llc.h (revision 0a94d38f0590468c79627c0140ef494c66616ae6)
1dc2c7305SBill Fenner /*
2dc2c7305SBill Fenner  * Copyright (c) 1993, 1994, 1997
3dc2c7305SBill Fenner  *	The Regents of the University of California.  All rights reserved.
4dc2c7305SBill Fenner  *
5dc2c7305SBill Fenner  * Redistribution and use in source and binary forms, with or without
6dc2c7305SBill Fenner  * modification, are permitted provided that: (1) source code distributions
7dc2c7305SBill Fenner  * retain the above copyright notice and this paragraph in its entirety, (2)
8dc2c7305SBill Fenner  * distributions including binary code include the above copyright notice and
9dc2c7305SBill Fenner  * this paragraph in its entirety in the documentation or other materials
10dc2c7305SBill Fenner  * provided with the distribution, and (3) all advertising materials mentioning
11dc2c7305SBill Fenner  * features or use of this software display the following acknowledgement:
12dc2c7305SBill Fenner  * ``This product includes software developed by the University of California,
13dc2c7305SBill Fenner  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14dc2c7305SBill Fenner  * the University nor the names of its contributors may be used to endorse
15dc2c7305SBill Fenner  * or promote products derived from this software without specific prior
16dc2c7305SBill Fenner  * written permission.
17dc2c7305SBill Fenner  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18dc2c7305SBill Fenner  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19dc2c7305SBill Fenner  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20dc2c7305SBill Fenner  *
210a94d38fSBill Fenner  * @(#) $Header: /tcpdump/master/libpcap/llc.h,v 1.2 2001/01/28 09:44:50 guy Exp $ (LBL)
22dc2c7305SBill Fenner  */
23dc2c7305SBill Fenner 
24dc2c7305SBill Fenner /*
25dc2c7305SBill Fenner  * 802.2 LLC SAP values.
26dc2c7305SBill Fenner  */
27dc2c7305SBill Fenner 
28dc2c7305SBill Fenner #ifndef LLCSAP_NULL
29dc2c7305SBill Fenner #define	LLCSAP_NULL		0x00
30dc2c7305SBill Fenner #endif
31dc2c7305SBill Fenner #ifndef LLCSAP_GLOBAL
32dc2c7305SBill Fenner #define	LLCSAP_GLOBAL		0xff
33dc2c7305SBill Fenner #endif
34dc2c7305SBill Fenner #ifndef LLCSAP_8021B
35dc2c7305SBill Fenner #define	LLCSAP_8021B_I		0x02
36dc2c7305SBill Fenner #endif
37dc2c7305SBill Fenner #ifndef LLCSAP_8021B
38dc2c7305SBill Fenner #define	LLCSAP_8021B_G		0x03
39dc2c7305SBill Fenner #endif
40dc2c7305SBill Fenner #ifndef LLCSAP_IP
41dc2c7305SBill Fenner #define	LLCSAP_IP		0x06
42dc2c7305SBill Fenner #endif
43dc2c7305SBill Fenner #ifndef LLCSAP_PROWAYNM
44dc2c7305SBill Fenner #define	LLCSAP_PROWAYNM		0x0e
45dc2c7305SBill Fenner #endif
46dc2c7305SBill Fenner #ifndef LLCSAP_8021D
47dc2c7305SBill Fenner #define	LLCSAP_8021D		0x42
48dc2c7305SBill Fenner #endif
49dc2c7305SBill Fenner #ifndef LLCSAP_RS511
50dc2c7305SBill Fenner #define	LLCSAP_RS511		0x4e
51dc2c7305SBill Fenner #endif
52dc2c7305SBill Fenner #ifndef LLCSAP_ISO8208
53dc2c7305SBill Fenner #define	LLCSAP_ISO8208		0x7e
54dc2c7305SBill Fenner #endif
55dc2c7305SBill Fenner #ifndef LLCSAP_PROWAY
56dc2c7305SBill Fenner #define	LLCSAP_PROWAY		0x8e
57dc2c7305SBill Fenner #endif
58dc2c7305SBill Fenner #ifndef LLCSAP_SNAP
59dc2c7305SBill Fenner #define	LLCSAP_SNAP		0xaa
60dc2c7305SBill Fenner #endif
61dc2c7305SBill Fenner #ifndef LLCSAP_IPX
62dc2c7305SBill Fenner #define LLCSAP_IPX		0xe0
63dc2c7305SBill Fenner #endif
640a94d38fSBill Fenner #ifndef LLCSAP_NETBEUI
650a94d38fSBill Fenner #define LLCSAP_NETBEUI		0xf0
660a94d38fSBill Fenner #endif
670a94d38fSBill Fenner #ifndef LLCSAP_ISONS
680a94d38fSBill Fenner #define	LLCSAP_ISONS		0xfe
690a94d38fSBill Fenner #endif
70