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
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
33 * @(#)ext.h 8.2 (Berkeley) 12/15/93
34 * $FreeBSD: src/contrib/telnet/telnetd/ext.h,v 1.11 2001/11/30 22:28:07 markm Exp $
38 * Telnet server variable declarations
40 extern char options
[256];
41 extern char do_dont_resp
[256];
42 extern char will_wont_resp
[256];
43 extern int linemode
; /* linemode on/off */
45 extern int uselinemode
; /* what linemode to use (on/off) */
46 extern int editmode
; /* edit modes in use */
47 extern int useeditmode
; /* edit modes to use */
48 extern int alwayslinemode
; /* command line option */
49 extern int lmodetype
; /* Client support for linemode */
51 extern int flowmode
; /* current flow control state */
52 extern int restartany
; /* restart output on any character state */
54 extern int diagnostic
; /* telnet diagnostic capabilities */
55 #endif /* DIAGNOSTICS */
57 extern int bftpd
; /* behave as bftp daemon */
58 #endif /* BFTPDAEMON */
60 extern int auth_level
;
63 extern slcfun slctab
[NSLC
+ 1]; /* slc mapping table */
68 * I/O data buffers, pointers, and counters.
70 extern char ptyobuf
[BUFSIZ
+NETSLOP
], *pfrontp
, *pbackp
;
72 extern char netibuf
[BUFSIZ
], *netip
;
74 extern char netobuf
[BUFSIZ
], *nfrontp
, *nbackp
;
75 extern char *neturg
; /* one past last bye of urgent data */
81 extern int SYNCHing
; /* we are in TELNET SYNCH mode */
85 add_slc(char, char, cc_t
),
87 change_slc(char, char, cc_t
),
89 clientstat(int, int, int),
90 copy_termbuf(char *, size_t),
93 do_opt_slc(unsigned char *, int),
97 edithost(char *, char *),
98 fatal(int, const char *),
99 fatalperror(int, const char *),
100 get_slc_defaults(void),
109 printoption(const char *, int),
110 printdata(const char *, char *, int),
111 printsub(char, unsigned char *, int),
113 process_slc(unsigned char, unsigned char, cc_t
),
116 putf(char *, char *),
127 start_login(char *, int, char *),
129 #ifdef AUTHENTICATION
132 start_slave(char *, int, char *),
141 end_slc(unsigned char **),
147 spcset(int, cc_t
*, cc_t
**),
152 tty_restartany(void),
153 tty_isbinaryin(void),
154 tty_isbinaryout(void),
169 tty_setlinemode(int),
177 int output_data(const char *, ...) __printflike(1, 2);
178 void output_datalen(const char *, int);
179 void startslave(char *, int, char *);
182 extern void (*encrypt_output
)(unsigned char *, int);
183 extern int (*decrypt_input
)(int);
184 extern char *nclearto
;
185 #endif /* ENCRYPTION */
189 * The following are some clocks used to decide how to interpret
190 * the relationship between various variables.
195 system
, /* what the current time is */
196 echotoggle
, /* last time user entered echo character */
197 modenegotiated
, /* last time operating mode negotiated */
198 didnetreceive
, /* last time we read data from network */
199 ttypesubopt
, /* ttype subopt is received */
200 tspeedsubopt
, /* tspeed subopt is received */
201 environsubopt
, /* environ subopt is received */
202 oenvironsubopt
, /* old environ subopt is received */
203 xdisplocsubopt
, /* xdisploc subopt is received */
204 baseline
, /* time started to do timed action */
205 gotDM
; /* when did we last see a data mark */
210 # define DEFAULT_IM "\r\n\r\nULTRIX (%h) (%t)\r\n\r\r\n\r"
213 # define DEFAULT_IM "\r\n\r\nFreeBSD (%h) (%t)\r\n\r\r\n\r"
216 # define DEFAULT_IM "\r\n\r\nHaiku (%h) (%t)\r\n\r\r\n\r"
218 # define DEFAULT_IM "\r\n\r\n4.4 BSD UNIX (%h) (%t)\r\n\r\r\n\r"