fix
[heimdal.git] / appl / telnet / telnetd / telnetd.h
blob09d6b33d0d4234ebcefe2360048c64c605e359ca
1 /*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University 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.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
33 * @(#)telnetd.h 8.1 (Berkeley) 6/4/93
37 #include <config.h>
39 #include <stdio.h>
40 #include <stdarg.h>
41 #include <stdlib.h>
42 #include <string.h>
44 #ifdef HAVE_SYS_TYPES_H
45 #include <sys/types.h>
46 #endif
47 #ifdef HAVE_SYS_PARAM_H
48 #include <sys/param.h>
49 #endif
51 #ifdef HAVE_SYS_SOCKET_H
52 #include <sys/socket.h>
53 #endif
54 #ifdef TIME_WITH_SYS_TIME
55 #include <sys/time.h>
56 #include <time.h>
57 #elif defined(HAVE_SYS_TIME_H)
58 #include <sys/time.h>
59 #else
60 #include <time.h>
61 #endif
63 #ifdef HAVE_SYS_RESOURCE_H
64 #include <sys/resource.h>
65 #endif /* HAVE_SYS_RESOURCE_H */
67 #ifdef HAVE_SYS_WAIT_H
68 #include <sys/wait.h>
69 #endif
71 #ifdef HAVE_FCNTL_H
72 #include <fcntl.h>
73 #endif
74 #ifdef HAVE_SYS_FILE_H
75 #include <sys/file.h>
76 #endif
77 #ifdef HAVE_SYS_STAT_H
78 #include <sys/stat.h>
79 #endif
81 /* including both <sys/ioctl.h> and <termios.h> in SunOS 4 generates a
82 lot of warnings */
84 #if defined(HAVE_SYS_IOCTL_H) && SunOS != 4
85 #include <sys/ioctl.h>
86 #endif
87 #ifdef HAVE_SYS_FILIO_H
88 #include <sys/filio.h>
89 #endif
91 #ifdef HAVE_NETINET_IN_H
92 #include <netinet/in.h>
93 #endif
94 #ifdef HAVE_NETINET_IN6_H
95 #include <netinet/in6.h>
96 #endif
97 #ifdef HAVE_NETINET6_IN6_H
98 #include <netinet6/in6.h>
99 #endif
101 #ifdef HAVE_ARPA_INET_H
102 #include <arpa/inet.h>
103 #endif
105 #include <signal.h>
106 #include <errno.h>
107 #ifdef HAVE_NETDB_H
108 #include <netdb.h>
109 #endif
110 #ifdef HAVE_SYSLOG_H
111 #include <syslog.h>
112 #endif
113 #include <ctype.h>
115 #ifdef HAVE_UNISTD_H
116 #include <unistd.h>
117 #endif
119 #include <termios.h>
121 #ifdef HAVE_PTY_H
122 #include <pty.h>
123 #endif
125 #include "defs.h"
127 #ifdef HAVE_ARPA_TELNET_H
128 #include <arpa/telnet.h>
129 #endif
131 #ifndef _POSIX_VDISABLE
132 # ifdef VDISABLE
133 # define _POSIX_VDISABLE VDISABLE
134 # else
135 # define _POSIX_VDISABLE ((unsigned char)'\377')
136 # endif
137 #endif
140 #ifdef HAVE_SYS_PTY_H
141 #include <sys/pty.h>
142 #endif
143 #ifdef HAVE_SYS_SELECT_H
144 #include <sys/select.h>
145 #endif
147 #ifdef HAVE_SYS_PTYIO_H
148 #include <sys/ptyio.h>
149 #endif
151 #ifdef HAVE_SYS_UTSNAME_H
152 #include <sys/utsname.h>
153 #endif
155 #include "ext.h"
157 #ifdef HAVE_PATHS_H
158 #include <paths.h>
159 #endif
161 #ifdef SOCKS
162 #include <socks.h>
163 /* This doesn't belong here. */
164 struct tm *localtime(const time_t *);
165 struct hostent *gethostbyname(const char *);
166 #endif
168 #ifdef KRB4
169 #include <des.h>
170 #include <krb.h>
171 #endif
173 #ifdef AUTHENTICATION
174 #include <libtelnet/auth.h>
175 #include <libtelnet/misc.h>
176 #ifdef ENCRYPTION
177 #include <libtelnet/encrypt.h>
178 #endif
179 #endif
181 #ifdef HAVE_LIBUTIL_H
182 #include <libutil.h>
183 #endif
185 #include <roken.h>
187 /* Don't use the system login, use our version instead */
189 /* BINDIR should be defined somewhere else... */
191 #ifndef BINDIR
192 #define BINDIR "/usr/athena/bin"
193 #endif
195 #undef _PATH_LOGIN
196 #define _PATH_LOGIN BINDIR "/login"
198 /* fallbacks */
200 #ifndef _PATH_DEV
201 #define _PATH_DEV "/dev/"
202 #endif
204 #ifndef _PATH_TTY
205 #define _PATH_TTY "/dev/tty"
206 #endif /* _PATH_TTY */
208 #ifdef DIAGNOSTICS
209 #define DIAG(a,b) if (diagnostic & (a)) b
210 #else
211 #define DIAG(a,b)
212 #endif
214 /* other external variables */
215 extern char **environ;
217 /* prototypes */
219 /* appends data to nfrontp and advances */
220 int output_data (const char *format, ...)
221 #ifdef __GNUC__
222 __attribute__ ((format (printf, 1, 2)))
223 #endif