175107Sfenner/*
275107Sfenner * Copyright (c) 1993, 1994, 1997
375107Sfenner *	The Regents of the University of California.  All rights reserved.
475107Sfenner *
575107Sfenner * Redistribution and use in source and binary forms, with or without
675107Sfenner * modification, are permitted provided that: (1) source code distributions
775107Sfenner * retain the above copyright notice and this paragraph in its entirety, (2)
875107Sfenner * distributions including binary code include the above copyright notice and
975107Sfenner * this paragraph in its entirety in the documentation or other materials
1075107Sfenner * provided with the distribution, and (3) all advertising materials mentioning
1175107Sfenner * features or use of this software display the following acknowledgement:
1275107Sfenner * ``This product includes software developed by the University of California,
1375107Sfenner * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
1475107Sfenner * the University nor the names of its contributors may be used to endorse
1575107Sfenner * or promote products derived from this software without specific prior
1675107Sfenner * written permission.
1775107Sfenner * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
1875107Sfenner * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
1975107Sfenner * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
2075107Sfenner *
21214518Srpaulo * @(#) $Header: /tcpdump/master/libpcap/llc.h,v 1.2 2001-01-28 09:44:50 guy Exp $ (LBL)
2275107Sfenner */
2375107Sfenner
2475107Sfenner/*
2575107Sfenner * 802.2 LLC SAP values.
2675107Sfenner */
2775107Sfenner
2875107Sfenner#ifndef LLCSAP_NULL
2975107Sfenner#define	LLCSAP_NULL		0x00
3075107Sfenner#endif
3175107Sfenner#ifndef LLCSAP_GLOBAL
3275107Sfenner#define	LLCSAP_GLOBAL		0xff
3375107Sfenner#endif
3475107Sfenner#ifndef LLCSAP_8021B
3575107Sfenner#define	LLCSAP_8021B_I		0x02
3675107Sfenner#endif
3775107Sfenner#ifndef LLCSAP_8021B
3875107Sfenner#define	LLCSAP_8021B_G		0x03
3975107Sfenner#endif
4075107Sfenner#ifndef LLCSAP_IP
4175107Sfenner#define	LLCSAP_IP		0x06
4275107Sfenner#endif
4375107Sfenner#ifndef LLCSAP_PROWAYNM
4475107Sfenner#define	LLCSAP_PROWAYNM		0x0e
4575107Sfenner#endif
4675107Sfenner#ifndef LLCSAP_8021D
4775107Sfenner#define	LLCSAP_8021D		0x42
4875107Sfenner#endif
4975107Sfenner#ifndef LLCSAP_RS511
5075107Sfenner#define	LLCSAP_RS511		0x4e
5175107Sfenner#endif
5275107Sfenner#ifndef LLCSAP_ISO8208
5375107Sfenner#define	LLCSAP_ISO8208		0x7e
5475107Sfenner#endif
5575107Sfenner#ifndef LLCSAP_PROWAY
5675107Sfenner#define	LLCSAP_PROWAY		0x8e
5775107Sfenner#endif
5875107Sfenner#ifndef LLCSAP_SNAP
5975107Sfenner#define	LLCSAP_SNAP		0xaa
6075107Sfenner#endif
6198530Sfenner#ifndef LLCSAP_IPX
6298530Sfenner#define LLCSAP_IPX		0xe0
6398530Sfenner#endif
6498530Sfenner#ifndef LLCSAP_NETBEUI
6598530Sfenner#define LLCSAP_NETBEUI		0xf0
6698530Sfenner#endif
6775107Sfenner#ifndef LLCSAP_ISONS
6875107Sfenner#define	LLCSAP_ISONS		0xfe
6975107Sfenner#endif
70