]> git.saurik.com Git - apple/xnu.git/blame - bsd/netat/lap.h
xnu-344.49.tar.gz
[apple/xnu.git] / bsd / netat / lap.h
CommitLineData
1c79356b
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
43866e37 6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
1c79356b 7 *
43866e37
A
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
1c79356b
A
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
43866e37
A
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
1c79356b
A
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25/*
26 * Copyright (c) 1988, 1989 Apple Computer, Inc.
27 */
28
29/* Definitions for generic access to AppleTalk link level protocols.
30 */
31
32#ifndef _NETAT_LAP_H_
33#define _NETAT_LAP_H_
9bccf70c 34#include <sys/appleapiopts.h>
1c79356b
A
35
36#define AT_MID_ELAP 202
37
38/* elap ioctl's */
39
40#define ELAP_IOC_MYIOCTL(i) ((i>>8) == AT_MID_ELAP)
41#define ELAP_IOC_GET_STATS ((AT_MID_ELAP<<8) | 2)
42
43#define AT_MID_LAP 214
44
45/* Generic LAP ioctl's. Each LAP may implement other ioctl's specific to
46 * its functionality.
47 */
48#define LAP_IOC_MYIOCTL(i) ((i>>8) == AT_MID_LAP)
49#define LAP_IOC_ADD_ROUTE ((AT_MID_LAP<<8) | 9)
50#define LAP_IOC_GET_ZONE ((AT_MID_LAP<<8) | 12)
51#define LAP_IOC_GET_ROUTE ((AT_MID_LAP<<8) | 13)
52#define LAP_IOC_SNMP_GET_CFG ((AT_MID_LAP<<8) | 21)
53#define LAP_IOC_SNMP_GET_AARP ((AT_MID_LAP<<8) | 22)
54#define LAP_IOC_SNMP_GET_RTMP ((AT_MID_LAP<<8) | 23)
55#define LAP_IOC_SNMP_GET_ZIP ((AT_MID_LAP<<8) | 24)
56#define LAP_IOC_SNMP_GET_DDP ((AT_MID_LAP<<8) | 25)
57#define LAP_IOC_SNMP_GET_NBP ((AT_MID_LAP<<8) | 26)
58#define LAP_IOC_SNMP_GET_PORTS ((AT_MID_LAP<<8) | 27)
59
60#ifdef NOT_USED
61
62#define ELAP_IOC_GET_CFG ((AT_MID_ELAP<<8) | 1) /* not used */
63#define ELAP_IOC_SET_CFG ((AT_MID_ELAP<<8) | 3) /* not used */
64#define ELAP_IOC_SET_ZONE ((AT_MID_ELAP<<8) | 4) /* not used */
65#define ELAP_IOC_SWITCHZONE ((AT_MID_ELAP<<8) | 5) /* not used */
66
67#define LAP_IOC_ONLINE ((AT_MID_LAP<<8) | 1) /* not used */
68#define LAP_IOC_OFFLINE ((AT_MID_LAP<<8) | 2) /* not used */
69#define LAP_IOC_GET_IFS_STAT ((AT_MID_LAP<<8) | 3) /* not used */
70#define LAP_IOC_ADD_ZONE ((AT_MID_LAP<<8) | 4) /* not used */
71#define LAP_IOC_ROUTER_START ((AT_MID_LAP<<8) | 5) /* not used */
72#define LAP_IOC_ROUTER_SHUTDOWN ((AT_MID_LAP<<8) | 6) /* not used */
73#define LAP_IOC_ROUTER_INIT ((AT_MID_LAP<<8) | 7) /* not used */
74#define LAP_IOC_GET_IFID ((AT_MID_LAP<<8) | 8) /* not used */
75#define LAP_IOC_GET_DBG ((AT_MID_LAP<<8) | 10) /* not used */
76#define LAP_IOC_SET_DBG ((AT_MID_LAP<<8) | 11) /* not used */
77#define LAP_IOC_ADD_IFNAME ((AT_MID_LAP<<8) | 14) /* not used */
78#define LAP_IOC_DO_DEFER ((AT_MID_LAP<<8) | 15) /* not used */
79#define LAP_IOC_DO_DELAY ((AT_MID_LAP<<8) | 16) /* not used */
80#define LAP_IOC_SHUT_DOWN ((AT_MID_LAP<<8) | 17) /* not used */
81#define LAP_IOC_CHECK_STATE ((AT_MID_LAP<<8) | 18) /* not used */
82#define LAP_IOC_DEL_IFNAME ((AT_MID_LAP<<8) | 19) /* not used */
83#define LAP_IOC_SET_MIX ((AT_MID_LAP<<8) | 20) /* not used */
84#define LAP_IOC_SET_LOCAL_ZONES ((AT_MID_LAP<<8) | 28) /* not used */
85#define LAP_IOC_GET_LOCAL_ZONE ((AT_MID_LAP<<8) | 29) /* not used */
86#define LAP_IOC_IS_ZONE_LOCAL ((AT_MID_LAP<<8) | 30) /* not used */
87#define LAP_IOC_GET_MODE ((AT_MID_LAP<<8) | 31) /* not used */
88#define LAP_IOC_GET_IF_NAMES ((AT_MID_LAP<<8) | 32) /* not used */
89#define LAP_IOC_GET_DEFAULT_ZONE ((AT_MID_LAP<<8) | 33) /* not used */
90#define LAP_IOC_SET_DEFAULT_ZONES ((AT_MID_LAP<<8) | 34) /* not used */
91
92#endif /* NOT_USED */
93
94#endif /* _NETAT_LAP_H_ */
95