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 */ 21dc2c7305SBill Fenner 22dc2c7305SBill Fenner /* 23*681ed54cSXin LI * Definitions for information in the LLC header. 24*681ed54cSXin LI */ 25*681ed54cSXin LI 26*681ed54cSXin LI #define LLC_U_FMT 3 27*681ed54cSXin LI #define LLC_GSAP 1 28*681ed54cSXin LI #define LLC_IG 1 /* Individual / Group */ 29*681ed54cSXin LI #define LLC_S_FMT 1 30*681ed54cSXin LI 31*681ed54cSXin LI #define LLC_U_POLL 0x10 32*681ed54cSXin LI #define LLC_IS_POLL 0x0100 33*681ed54cSXin LI #define LLC_XID_FI 0x81 34*681ed54cSXin LI 35*681ed54cSXin LI #define LLC_U_CMD_MASK 0xef 36*681ed54cSXin LI #define LLC_UI 0x03 37*681ed54cSXin LI #define LLC_UA 0x63 38*681ed54cSXin LI #define LLC_DISC 0x43 39*681ed54cSXin LI #define LLC_DM 0x0f 40*681ed54cSXin LI #define LLC_SABME 0x6f 41*681ed54cSXin LI #define LLC_TEST 0xe3 42*681ed54cSXin LI #define LLC_XID 0xaf 43*681ed54cSXin LI #define LLC_FRMR 0x87 44*681ed54cSXin LI 45*681ed54cSXin LI #define LLC_S_CMD_MASK 0x0f 46*681ed54cSXin LI #define LLC_RR 0x0001 47*681ed54cSXin LI #define LLC_RNR 0x0005 48*681ed54cSXin LI #define LLC_REJ 0x0009 49*681ed54cSXin LI 50*681ed54cSXin LI #define LLC_IS_NR(is) (((is) >> 9) & 0x7f) 51*681ed54cSXin LI #define LLC_I_NS(is) (((is) >> 1) & 0x7f) 52*681ed54cSXin LI 53*681ed54cSXin LI /* 54dc2c7305SBill Fenner * 802.2 LLC SAP values. 55dc2c7305SBill Fenner */ 56dc2c7305SBill Fenner 57dc2c7305SBill Fenner #ifndef LLCSAP_NULL 58dc2c7305SBill Fenner #define LLCSAP_NULL 0x00 59dc2c7305SBill Fenner #endif 60dc2c7305SBill Fenner #ifndef LLCSAP_GLOBAL 61dc2c7305SBill Fenner #define LLCSAP_GLOBAL 0xff 62dc2c7305SBill Fenner #endif 63*681ed54cSXin LI #ifndef LLCSAP_8021B_I 64dc2c7305SBill Fenner #define LLCSAP_8021B_I 0x02 65dc2c7305SBill Fenner #endif 66*681ed54cSXin LI #ifndef LLCSAP_8021B_G 67dc2c7305SBill Fenner #define LLCSAP_8021B_G 0x03 68dc2c7305SBill Fenner #endif 69dc2c7305SBill Fenner #ifndef LLCSAP_IP 70dc2c7305SBill Fenner #define LLCSAP_IP 0x06 71dc2c7305SBill Fenner #endif 72dc2c7305SBill Fenner #ifndef LLCSAP_PROWAYNM 73dc2c7305SBill Fenner #define LLCSAP_PROWAYNM 0x0e 74dc2c7305SBill Fenner #endif 75dc2c7305SBill Fenner #ifndef LLCSAP_8021D 76dc2c7305SBill Fenner #define LLCSAP_8021D 0x42 77dc2c7305SBill Fenner #endif 78dc2c7305SBill Fenner #ifndef LLCSAP_RS511 79dc2c7305SBill Fenner #define LLCSAP_RS511 0x4e 80dc2c7305SBill Fenner #endif 81dc2c7305SBill Fenner #ifndef LLCSAP_ISO8208 82dc2c7305SBill Fenner #define LLCSAP_ISO8208 0x7e 83dc2c7305SBill Fenner #endif 84dc2c7305SBill Fenner #ifndef LLCSAP_PROWAY 85dc2c7305SBill Fenner #define LLCSAP_PROWAY 0x8e 86dc2c7305SBill Fenner #endif 87dc2c7305SBill Fenner #ifndef LLCSAP_SNAP 88dc2c7305SBill Fenner #define LLCSAP_SNAP 0xaa 89dc2c7305SBill Fenner #endif 90dc2c7305SBill Fenner #ifndef LLCSAP_IPX 91dc2c7305SBill Fenner #define LLCSAP_IPX 0xe0 92dc2c7305SBill Fenner #endif 930a94d38fSBill Fenner #ifndef LLCSAP_NETBEUI 940a94d38fSBill Fenner #define LLCSAP_NETBEUI 0xf0 950a94d38fSBill Fenner #endif 960a94d38fSBill Fenner #ifndef LLCSAP_ISONS 970a94d38fSBill Fenner #define LLCSAP_ISONS 0xfe 980a94d38fSBill Fenner #endif 99