/* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * Copyright (c) 1988, 1989 Apple Computer, Inc. */ #ifndef _NETAT_AT_PAT_H_ #define _NETAT_AT_PAT_H_ #include #ifdef __APPLE_API_OBSOLETE /* This is header for the PAT module. This contains a table of pointers that * should get initialized with the BNET stuff and the ethernet driver. The * number of interfaces supported should be communicated. Should include * mbuf.h, if.h, socket.h * * Author: R. C. Venkatraman * Date : 2/29/88 */ typedef struct { unsigned char dst[6]; unsigned char src[6]; unsigned short len; } enet_header_t; typedef struct { unsigned char dst_sap; unsigned char src_sap; unsigned char control; unsigned char protocol[5]; } llc_header_t; #define ENET_LLC_SIZE (sizeof(enet_header_t)+sizeof(llc_header_t)) #define SNAP_UI 0x03 /* bits 11000000 reversed!! */ #define SNAP_AT_SAP 0xaa #define SNAP_PROTO_AT {0x08, 0x00, 0x07, 0x80, 0x9B} #define SNAP_PROTO_AARP {0x00, 0x00, 0x00, 0x80, 0xF3} #define SNAP_HDR_AT {SNAP_AT_SAP, SNAP_AT_SAP, SNAP_UI, SNAP_PROTO_AT} #define SNAP_HDR_AARP {SNAP_AT_SAP, SNAP_AT_SAP, SNAP_UI, SNAP_PROTO_AARP} #define LLC_PROTO_EQUAL(a1, a2) \ ((*((unsigned long *)(a1)) == *((unsigned long *)(a2))) && \ (a1[4] == a2[4]) \ ) #endif /* __APPLE_API_OBSOLETE */ #endif /* _NETAT_AT_PAT_H_ */