]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
37839358 A |
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. | |
1c79356b | 11 | * |
37839358 A |
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 | |
1c79356b A |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
37839358 A |
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. | |
1c79356b A |
19 | * |
20 | * @APPLE_LICENSE_HEADER_END@ | |
21 | */ | |
22 | /* | |
23 | * | |
24 | * ORIGINS: 82 | |
25 | * | |
26 | * (C) COPYRIGHT Apple Computer, Inc. 1992-1996 | |
27 | * All Rights Reserved | |
28 | * | |
29 | */ | |
30 | ||
31 | #ifndef _NETAT_ZIP_H_ | |
32 | #define _NETAT_ZIP_H_ | |
9bccf70c | 33 | #include <sys/appleapiopts.h> |
1c79356b | 34 | |
91447636 A |
35 | #ifdef __APPLE_API_OBSOLETE |
36 | ||
1c79356b A |
37 | /* Definitions for ZIP, per AppleTalk Zone Information Protocol |
38 | * documentation from `Inside AppleTalk', July 14, 1986. | |
39 | */ | |
40 | ||
41 | /* ZIP packet types */ | |
42 | ||
43 | #define ZIP_QUERY 1 /* ZIP zone query packet */ | |
44 | #define ZIP_REPLY 2 /* ZIP query reply packet */ | |
45 | #define ZIP_TAKEDOWN 3 /* ZIP takedown packet */ | |
46 | #define ZIP_BRINGUP 4 /* ZIP bringup packet */ | |
47 | #define ZIP_GETNETINFO 5 /* ZIP DDP get net info packet */ | |
48 | #define ZIP_NETINFO_REPLY 6 /* ZIP GetNetInfo Reply */ | |
49 | #define ZIP_NOTIFY 7 /* Notification of zone name change */ | |
50 | #define ZIP_EXTENDED_REPLY 8 /* ZIP extended query reply packet */ | |
51 | ||
52 | #define ZIP_GETMYZONE 7 /* ZIP ATP get my zone packet */ | |
53 | #define ZIP_GETZONELIST 8 /* ZIP ATP get zone list packet */ | |
54 | #define ZIP_GETLOCALZONES 9 /* ZIP ATP get cable list packet*/ | |
55 | ||
56 | #define ZIP_HDR_SIZE 2 | |
57 | #define ZIP_DATA_SIZE 584 | |
58 | ||
59 | ||
60 | #define ZIP_MAX_ZONE_LENGTH 32 /* Max length for a Zone Name */ | |
61 | ||
62 | typedef struct at_zip { | |
63 | u_char command; | |
64 | u_char flags; | |
65 | char data[ZIP_DATA_SIZE]; | |
66 | } at_zip_t; | |
67 | ||
68 | #define ZIP_ZIP(c) ((at_zip_t *)(&((at_ddp_t *)(c))->data[0])) | |
69 | ||
70 | typedef struct { | |
71 | char command; | |
72 | char flags; | |
73 | at_net cable_range_start; | |
74 | at_net cable_range_end; | |
75 | u_char data[1]; | |
76 | } at_x_zip_t; | |
77 | ||
78 | #define ZIP_X_HDR_SIZE 6 | |
79 | ||
80 | /* flags for ZipNetInfoReply packet */ | |
81 | #define ZIP_ZONENAME_INVALID 0x80 | |
82 | #define ZIP_USE_BROADCAST 0x40 | |
83 | #define ZIP_ONE_ZONE 0x20 | |
84 | ||
85 | #define ZIP_NETINFO_RETRIES 3 | |
86 | #define ZIP_TIMER_INT HZ /* HZ defined in param.h */ | |
87 | ||
88 | /* ZIP control codes */ | |
89 | #define ZIP_ONLINE 1 | |
90 | #define ZIP_LATE_ROUTER 2 | |
91 | #define ZIP_NO_ROUTER 3 | |
92 | ||
93 | #define ZIP_RE_AARP -1 | |
94 | ||
91447636 | 95 | #endif /* __APPLE_API_OBSOLETE */ |
1c79356b | 96 | #endif /* _NETAT_ZIP_H_ */ |