]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netat/at_config.h
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@
23 * Copyright (c) 1988-1993 Apple Computer, Inc.
26 #ifndef _NETAT_AT_CONFIG_H_
27 #define _NETAT_AT_CONFIG_H_
28 #include <sys/appleapiopts.h>
30 #ifdef __APPLE_API_OBSOLETE
32 /* originally from if_cnt.h
34 * defines for if_stat struct.
35 * note: set IF_TYPE_CNT to number of types supported and make sure
36 * that defines for those type are LESS than this value
39 #define IF_TYPENO_CNT 1 /* number of different types we support */
40 /* *** this value was 5, but for now, let's
41 just start with ethernet *** */
43 /* maximum number of I/F's allowed */
44 /* *** "17" corresponds to Shiner *** */
45 #define IF_TOTAL_MAX 17 /* max count of any combination of I/F's */
47 typedef struct if_types
{
52 /* GET_ZONES defines */
53 #define GET_ALL_ZONES 0
54 #define GET_LOCAL_ZONES_ONLY 1
56 typedef struct if_zone_info
{
57 at_nvestr_t zone_name
; /* the zone name & len */
58 unsigned zone_ifs
[IF_TYPENO_CNT
]; /* bitmapped I/F usage for zone */
59 unsigned zone_home
; /* TRUE for home zone */
62 typedef union if_zone_nve
{
67 /* this struct used to obtain local zones for specific
68 ifID's from the kernel and to set default zones for
69 specific ifID numbers */
70 typedef struct if_zone
{
72 char usage
[IF_TOTAL_MAX
]; /* I/F usage (1 set if
74 int index
; /* zone index in ZT_table */
78 #endif /* __APPLE_API_OBSOLETE */
79 #endif /* _NETAT_AT_CONFIG_H_ */