]> git.saurik.com Git - apple/xnu.git/blob - bsd/netat/pap.h
xnu-517.7.7.tar.gz
[apple/xnu.git] / bsd / netat / pap.h
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 *
24 * ORIGINS: 82
25 *
26 * (C) COPYRIGHT Apple Computer, Inc. 1992-1996
27 * All Rights Reserved
28 *
29 */
30
31 /* Definitions for ATP protocol and streams module, per
32 * AppleTalk Transaction Protocol documentation from
33 * `Inside AppleTalk', July 14, 1986.
34 */
35
36 #ifndef _NETAT_PAP_H_
37 #define _NETAT_PAP_H_
38 #include <sys/appleapiopts.h>
39
40 #define AT_PAP_DATA_SIZE 512 /* Maximum PAP data size */
41 #define AT_PAP_STATUS_SIZE 255 /* Maximum PAP status length */
42 #define PAP_TIMEOUT 120
43
44 /* PAP packet types */
45
46 #define AT_PAP_TYPE_OPEN_CONN 0x01 /* Open-Connection packet */
47 #define AT_PAP_TYPE_OPEN_CONN_REPLY 0x02 /* Open-Connection-Reply packet */
48 #define AT_PAP_TYPE_SEND_DATA 0x03 /* Send-Data packet */
49 #define AT_PAP_TYPE_DATA 0x04 /* Data packet */
50 #define AT_PAP_TYPE_TICKLE 0x05 /* Tickle packet */
51 #define AT_PAP_TYPE_CLOSE_CONN 0x06 /* Close-Connection packet */
52 #define AT_PAP_TYPE_CLOSE_CONN_REPLY 0x07 /* Close-Connection-Reply pkt */
53 #define AT_PAP_TYPE_SEND_STATUS 0x08 /* Send-Status packet */
54 #define AT_PAP_TYPE_SEND_STS_REPLY 0x09 /* Send-Status-Reply packet */
55 #define AT_PAP_TYPE_READ_LW 0x0A /* Read LaserWriter Message */
56
57
58 /* PAP packet structure */
59
60 typedef struct {
61 u_char at_pap_connection_id;
62 u_char at_pap_type;
63 u_char at_pap_sequence_number[2];
64 u_char at_pap_responding_socket;
65 u_char at_pap_flow_quantum;
66 u_char at_pap_wait_time_or_result[2];
67 u_char at_pap_buffer[AT_PAP_DATA_SIZE];
68 } at_pap;
69
70
71 /* ioctl definitions */
72
73 #define AT_PAP_SETHDR (('~'<<8)|0)
74 #define AT_PAP_READ (('~'<<8)|1)
75 #define AT_PAP_WRITE (('~'<<8)|2)
76 #define AT_PAP_WRITE_EOF (('~'<<8)|3)
77 #define AT_PAP_WRITE_FLUSH (('~'<<8)|4)
78 #define AT_PAP_READ_IGNORE (('~'<<8)|5)
79 #define AT_PAPD_SET_STATUS (('~'<<8)|40)
80 #define AT_PAPD_GET_NEXT_JOB (('~'<<8)|41)
81
82 extern char at_pap_status[];
83 extern char *pap_status ();
84
85 #define NPAPSERVERS 10 /* the number of active PAP servers/node */
86 #define NPAPSESSIONS 40 /* the number of active PAP sockets/node */
87
88 #define AT_PAP_HDR_SIZE (DDP_X_HDR_SIZE + ATP_HDR_SIZE)
89
90 #define ATP_DDP_HDR(c) ((at_ddp_t *)(c))
91
92 #define PAP_SOCKERR "Unable to open PAP socket"
93 #define P_NOEXIST "Printer not found"
94 #define P_UNREACH "Unable to establish PAP session"
95
96 struct pap_state {
97 u_char pap_inuse; /* true if this one is allocated */
98 u_char pap_tickle; /* true if we are tickling the other end */
99 u_char pap_request; /* bitmap from a received request */
100 u_char pap_eof; /* true if we have received an EOF */
101 u_char pap_eof_sent; /* true if we have sent an EOF */
102 u_char pap_sent; /* true if we have sent anything (and
103 therefore may have to send an eof
104 on close) */
105 u_char pap_error; /* error message from read request */
106 u_char pap_timer; /* a timeout is pending */
107 u_char pap_closing; /* the link is closing and/or closed */
108 u_char pap_request_count; /* number of outstanding requests */
109 u_char pap_req_timer; /* the request timer is running */
110 u_char pap_ending; /* we are waiting for atp to flush */
111 u_char pap_read_ignore; /* we are in 'read with ignore' mode */
112
113 u_char pap_req_socket;
114 at_inet_t pap_to;
115 int pap_flow;
116
117 u_short pap_send_count; /* the sequence number to send on the
118 next send data request */
119 u_short pap_rcv_count; /* the sequence number expected to
120 receive on the next request */
121 u_short pap_tid; /* ATP transaction ID for responses */
122 u_char pap_connID; /* our connection ID */
123
124 int pap_ignore_id; /* the transaction ID for read ignore */
125 int pap_tickle_id; /* the transaction ID for tickles */
126 };
127
128 #endif /* _NETAT_PAP_H_ */