]>
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 /* originally from if_cnt.h
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
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 *** */
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 */
45 typedef struct if_types
{
50 /* GET_ZONES defines */
51 #define GET_ALL_ZONES 0
52 #define GET_LOCAL_ZONES_ONLY 1
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 */
60 typedef union if_zone_nve
{
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
{
70 char usage
[IF_TOTAL_MAX
]; /* I/F usage (1 set if
72 int index
; /* zone index in ZT_table */
76 #endif /* _NETAT_AT_CONFIG_H_ */