]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
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. | |
11 | * | |
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 | |
18 | * under the License. | |
19 | * | |
20 | * @APPLE_LICENSE_HEADER_END@ | |
21 | */ | |
22 | /* | |
23 | * Copyright (c) 1988-1993 Apple Computer, Inc. | |
24 | */ | |
25 | ||
26 | #ifndef _NETAT_AT_CONFIG_H_ | |
27 | #define _NETAT_AT_CONFIG_H_ | |
9bccf70c | 28 | #include <sys/appleapiopts.h> |
1c79356b A |
29 | |
30 | /* originally from if_cnt.h | |
31 | * | |
32 | * defines for if_stat struct. | |
33 | * note: set IF_TYPE_CNT to number of types supported and make sure | |
34 | * that defines for those type are LESS than this value | |
35 | */ | |
36 | ||
37 | #define IF_TYPENO_CNT 1 /* number of different types we support */ | |
38 | /* *** this value was 5, but for now, let's | |
39 | just start with ethernet *** */ | |
40 | ||
41 | /* maximum number of I/F's allowed */ | |
42 | /* *** "17" corresponds to Shiner *** */ | |
43 | #define IF_TOTAL_MAX 17 /* max count of any combination of I/F's */ | |
44 | ||
45 | typedef struct if_types { | |
46 | int iftype, | |
47 | max_interfaces; | |
48 | } if_types_t; | |
49 | ||
50 | /* GET_ZONES defines */ | |
51 | #define GET_ALL_ZONES 0 | |
52 | #define GET_LOCAL_ZONES_ONLY 1 | |
53 | ||
54 | typedef struct if_zone_info { | |
55 | at_nvestr_t zone_name; /* the zone name & len */ | |
56 | unsigned zone_ifs[IF_TYPENO_CNT]; /* bitmapped I/F usage for zone */ | |
57 | unsigned zone_home; /* TRUE for home zone */ | |
58 | } if_zone_info_t; | |
59 | ||
60 | typedef union if_zone_nve { | |
61 | at_nvestr_t ifnve; | |
62 | int zone; | |
63 | } if_zone_nve_t; | |
64 | ||
65 | /* this struct used to obtain local zones for specific | |
66 | ifID's from the kernel and to set default zones for | |
67 | specific ifID numbers */ | |
68 | typedef struct if_zone { | |
69 | if_zone_nve_t ifzn; | |
70 | char usage[IF_TOTAL_MAX]; /* I/F usage (1 set if | |
71 | I/F in this zone */ | |
72 | int index; /* zone index in ZT_table */ | |
73 | } if_zone_t; | |
74 | ||
75 | ||
76 | #endif /* _NETAT_AT_CONFIG_H_ */ |