Initial import from FreeBSD RELENG_4:
[dragonfly.git] / crypto / heimdal / appl / telnet / telnet / telnet_locl.h
1 /*
2  * Copyright (c) 1995 - 2000 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden).
4  * All rights reserved.
5  * 
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 
17  * 3. Neither the name of the Institute nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 /* $Id: telnet_locl.h,v 1.21 2001/12/20 20:39:52 joda Exp $ */
35
36 #ifdef HAVE_CONFIG_H
37 #include <config.h>
38 #endif
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <stdarg.h>
43 #include <string.h>
44 #include <ctype.h>
45 #ifdef HAVE_SIGNAL_H
46 #include <signal.h>
47 #endif
48 #include <errno.h>
49 #include <setjmp.h>
50 #ifdef HAVE_BSDSETJMP_H
51 #include <bsdsetjmp.h>
52 #endif
53
54 #ifdef HAVE_SYS_TYPES_H
55 #include <sys/types.h>
56 #endif
57
58 #ifdef HAVE_UNISTD_H
59 #include <unistd.h>
60 #endif
61
62 /* termios.h *must* be included before curses.h */
63 #ifdef HAVE_TERMIOS_H
64 #include <termios.h>
65 #endif
66
67 #if defined(SOCKS) && defined(HAVE_CURSES_H)
68 #include <curses.h>
69 #endif
70
71 #if defined(HAVE_SYS_TERMIO_H) && !defined(HAVE_TERMIOS_H)
72 #include <sys/termio.h>
73 #endif
74
75 #if defined(HAVE_TERMCAP_H)
76 #include <termcap.h>
77 #endif
78
79 #ifdef HAVE_FCNTL_H
80 #include <fcntl.h>
81 #endif
82
83 #ifdef HAVE_NETDB_H
84 #include <netdb.h>
85 #endif
86
87 #ifdef HAVE_PWD_H
88 #include <pwd.h>
89 #endif
90
91 #ifdef HAVE_SYS_SELECT_H
92 #include <sys/select.h>
93 #endif
94 #ifdef TIME_WITH_SYS_TIME
95 #include <sys/time.h>
96 #include <time.h>
97 #elif defined(HAVE_SYS_TIME_H)
98 #include <sys/time.h>
99 #else
100 #include <time.h>
101 #endif
102 #ifdef HAVE_SYS_PARAM_H
103 #include <sys/param.h>
104 #endif
105 /* not with SunOS 4 */
106 #if defined(HAVE_SYS_IOCTL_H) && SunOS != 40
107 #include <sys/ioctl.h>
108 #endif
109 #ifdef HAVE_SYS_RESOURCE_H
110 #include <sys/resource.h>
111 #endif /* HAVE_SYS_RESOURCE_H */
112 #ifdef HAVE_SYS_WAIT_H
113 #include <sys/wait.h>
114 #endif
115 #ifdef HAVE_SYS_FILIO_H
116 #include <sys/filio.h>
117 #endif
118 #ifdef HAVE_SYS_FILE_H
119 #include <sys/file.h>
120 #endif
121 #ifdef HAVE_SYS_SOCKET_H
122 #include <sys/socket.h>
123 #endif
124 #ifdef HAVE_NETINET_IN_H
125 #include <netinet/in.h>
126 #endif
127 #ifdef HAVE_NETINET_IN6_H
128 #include <netinet/in6.h>
129 #endif
130 #ifdef HAVE_NETINET6_IN6_H
131 #include <netinet6/in6.h>
132 #endif
133
134 #ifdef HAVE_NETINET_IN_SYSTM_H
135 #include <netinet/in_systm.h>
136 #endif
137 #ifdef HAVE_NETINET_IP_H
138 #include <netinet/ip.h>
139 #endif
140 #ifdef HAVE_ARPA_INET_H
141 #ifdef _AIX
142 struct sockaddr_dl; /* AIX fun */
143 struct ether_addr;
144 #endif
145 #include <arpa/inet.h>
146 #endif
147
148 #ifdef HAVE_ARPA_TELNET_H
149 #include <arpa/telnet.h>
150 #endif
151
152 #ifdef SOCKS
153 #include <socks.h>
154 #endif
155
156 #include <err.h>
157 #include <roken.h>
158 /* krb.h? */
159
160 #if     defined(AUTHENTICATION) || defined(ENCRYPTION)
161 #include <libtelnet/auth.h>
162 #include <libtelnet/encrypt.h>
163 #endif
164 #include <libtelnet/misc.h>
165 #include <libtelnet/misc-proto.h>
166
167 #define LINEMODE
168 #ifndef KLUDGELINEMODE
169 #define KLUDGELINEMODE
170 #endif
171
172 #include "ring.h"
173 #include "externs.h"
174 #include "defines.h"
175 #include "types.h"
176
177 /* prototypes */
178