]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netat/at_pat.h
97a535b2ea50474b8c726eecb25de53e795d6ada
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
24 * Copyright (c) 1988, 1989 Apple Computer, Inc.
27 #ifndef _NETAT_AT_PAT_H_
28 #define _NETAT_AT_PAT_H_
30 /* This is header for the PAT module. This contains a table of pointers that
31 * should get initialized with the BNET stuff and the ethernet driver. The
32 * number of interfaces supported should be communicated. Should include
33 * mbuf.h, if.h, socket.h
35 * Author: R. C. Venkatraman
46 unsigned char dst_sap
;
47 unsigned char src_sap
;
48 unsigned char control
;
49 unsigned char protocol
[5];
52 #define ENET_LLC_SIZE (sizeof(enet_header_t)+sizeof(llc_header_t))
53 #define SNAP_UI 0x03 /* bits 11000000 reversed!! */
54 #define SNAP_AT_SAP 0xaa
55 #define SNAP_PROTO_AT {0x08, 0x00, 0x07, 0x80, 0x9B}
56 #define SNAP_PROTO_AARP {0x00, 0x00, 0x00, 0x80, 0xF3}
57 #define SNAP_HDR_AT {SNAP_AT_SAP, SNAP_AT_SAP, SNAP_UI, SNAP_PROTO_AT}
58 #define SNAP_HDR_AARP {SNAP_AT_SAP, SNAP_AT_SAP, SNAP_UI, SNAP_PROTO_AARP}
60 #define LLC_PROTO_EQUAL(a1, a2) \
61 ((*((unsigned long *)(a1)) == *((unsigned long *)(a2))) && \
64 #endif /* _NETAT_AT_PAT_H_ */