]>
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_ | |
28 | ||
29 | /* originally from if_cnt.h | |
30 | * | |
31 | * defines for if_stat struct. | |
32 | * note: set IF_TYPE_CNT to number of types supported and make sure | |
33 | * that defines for those type are LESS than this value | |
34 | */ | |
35 | ||
36 | #define IF_TYPENO_CNT 1 /* number of different types we support */ | |
37 | /* *** this value was 5, but for now, let's | |
38 | just start with ethernet *** */ | |
39 | ||
40 | /* maximum number of I/F's allowed */ | |
41 | /* *** "17" corresponds to Shiner *** */ | |
42 | #define IF_TOTAL_MAX 17 /* max count of any combination of I/F's */ | |
43 | ||
44 | typedef struct if_types { | |
45 | int iftype, | |
46 | max_interfaces; | |
47 | } if_types_t; | |
48 | ||
49 | /* GET_ZONES defines */ | |
50 | #define GET_ALL_ZONES 0 | |
51 | #define GET_LOCAL_ZONES_ONLY 1 | |
52 | ||
53 | typedef struct if_zone_info { | |
54 | at_nvestr_t zone_name; /* the zone name & len */ | |
55 | unsigned zone_ifs[IF_TYPENO_CNT]; /* bitmapped I/F usage for zone */ | |
56 | unsigned zone_home; /* TRUE for home zone */ | |
57 | } if_zone_info_t; | |
58 | ||
59 | typedef union if_zone_nve { | |
60 | at_nvestr_t ifnve; | |
61 | int zone; | |
62 | } if_zone_nve_t; | |
63 | ||
64 | /* this struct used to obtain local zones for specific | |
65 | ifID's from the kernel and to set default zones for | |
66 | specific ifID numbers */ | |
67 | typedef struct if_zone { | |
68 | if_zone_nve_t ifzn; | |
69 | char usage[IF_TOTAL_MAX]; /* I/F usage (1 set if | |
70 | I/F in this zone */ | |
71 | int index; /* zone index in ZT_table */ | |
72 | } if_zone_t; | |
73 | ||
74 | ||
75 | #endif /* _NETAT_AT_CONFIG_H_ */ |