No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / dist / heimdal / appl / telnet / telnetd / ext.h
blob073f6fff262f3f42ac2cadb5b469c68a9bf83527
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 * @(#)ext.h 8.2 (Berkeley) 12/15/93
36 /* $Heimdal: ext.h 15841 2005-08-08 13:34:26Z lha $
37 $NetBSD$ */
39 #ifndef __EXT_H__
40 #define __EXT_H__
43 * Telnet server variable declarations
45 extern char options[256];
46 extern char do_dont_resp[256];
47 extern char will_wont_resp[256];
48 extern int flowmode; /* current flow control state */
49 extern int restartany; /* restart output on any character state */
50 #ifdef DIAGNOSTICS
51 extern int diagnostic; /* telnet diagnostic capabilities */
52 #endif /* DIAGNOSTICS */
53 extern int require_otp;
54 #ifdef AUTHENTICATION
55 extern int auth_level;
56 #endif
57 extern const char *new_login;
59 extern slcfun slctab[NSLC + 1]; /* slc mapping table */
61 extern char terminaltype[41];
64 * I/O data buffers, pointers, and counters.
66 extern char ptyobuf[BUFSIZ+NETSLOP], *pfrontp, *pbackp;
68 extern char netibuf[BUFSIZ], *netip;
70 extern char netobuf[BUFSIZ+NETSLOP], *nfrontp, *nbackp;
71 extern char *neturg; /* one past last bye of urgent data */
73 extern int pcc, ncc;
75 extern int ourpty, net;
76 extern char *line;
77 extern int SYNCHing; /* we are in TELNET SYNCH mode */
79 int telnet_net_write (unsigned char *str, int len);
80 void net_encrypt (void);
81 int telnet_spin (void);
82 char *telnet_getenv (const char *val);
83 char *telnet_gets (char *prompt, char *result, int length, int echo);
84 void get_slc_defaults (void);
85 void telrcv (void);
86 void send_do (int option, int init);
87 void willoption (int option);
88 void send_dont (int option, int init);
89 void wontoption (int option);
90 void send_will (int option, int init);
91 void dooption (int option);
92 void send_wont (int option, int init);
93 void dontoption (int option);
94 void suboption (void);
95 void doclientstat (void);
96 void send_status (void);
97 void init_termbuf (void);
98 void set_termbuf (void);
99 int spcset (int func, cc_t *valp, cc_t **valpp);
100 void set_utid (void);
101 int getpty (int *ptynum);
102 int tty_isecho (void);
103 int tty_flowmode (void);
104 int tty_restartany (void);
105 void tty_setecho (int on);
106 int tty_israw (void);
107 void tty_binaryin (int on);
108 void tty_binaryout (int on);
109 int tty_isbinaryin (void);
110 int tty_isbinaryout (void);
111 int tty_issofttab (void);
112 void tty_setsofttab (int on);
113 int tty_islitecho (void);
114 void tty_setlitecho (int on);
115 int tty_iscrnl (void);
116 void tty_tspeed (int val);
117 void tty_rspeed (int val);
118 void getptyslave (void);
119 int cleanopen (char *);
120 void startslave (const char *host, const char *, int autologin, char *autoname);
121 void init_env (void);
122 void start_login (const char *host, int autologin, char *name);
123 void cleanup (int sig);
124 int main (int argc, char **argv);
125 int getterminaltype (char *name, size_t);
126 void _gettermname (void);
127 int terminaltypeok (char *s);
128 void my_telnet (int f, int p, const char*, const char *, int, char*);
129 void interrupt (void);
130 void sendbrk (void);
131 void sendsusp (void);
132 void recv_ayt (void);
133 void doeof (void);
134 void flowstat (void);
135 void clientstat (int code, int parm1, int parm2);
136 int ttloop (void);
137 int stilloob (int s);
138 void ptyflush (void);
139 char *nextitem (char *current);
140 void netclear (void);
141 void netflush (void);
142 void writenet (const void *, size_t);
143 void fatal (int f, char *msg);
144 void fatalperror (int f, const char *msg);
145 void fatalperror_errno (int f, const char *msg, int error);
146 void edithost (char *pat, char *host);
147 void putstr (char *s);
148 void putchr (int cc);
149 void putf (char *cp, char *where);
150 void printoption (char *fmt, int option);
151 void printsub (int direction, unsigned char *pointer, int length);
152 void printdata (char *tag, char *ptr, int cnt);
153 int login_tty(int t);
155 #ifdef ENCRYPTION
156 extern void (*encrypt_output) (unsigned char *, int);
157 extern int (*decrypt_input) (int);
158 extern char *nclearto;
159 #endif
163 * The following are some clocks used to decide how to interpret
164 * the relationship between various variables.
167 struct clocks_t{
169 system, /* what the current time is */
170 echotoggle, /* last time user entered echo character */
171 modenegotiated, /* last time operating mode negotiated */
172 didnetreceive, /* last time we read data from network */
173 ttypesubopt, /* ttype subopt is received */
174 tspeedsubopt, /* tspeed subopt is received */
175 environsubopt, /* environ subopt is received */
176 oenvironsubopt, /* old environ subopt is received */
177 xdisplocsubopt, /* xdisploc subopt is received */
178 baseline, /* time started to do timed action */
179 gotDM; /* when did we last see a data mark */
181 extern struct clocks_t clocks;
183 extern int log_unauth;
184 extern int no_warn;
186 extern int def_tspeed, def_rspeed;
187 #ifdef TIOCSWINSZ
188 extern int def_row, def_col;
189 #endif
191 #ifdef STREAMSPTY
192 extern int really_stream;
193 #endif
195 #ifndef USE_IM
196 # ifdef CRAY
197 # define USE_IM "Cray UNICOS (%h) (%t)"
198 # endif
199 # ifdef _AIX
200 # define USE_IM "%s %v.%r (%h) (%t)"
201 # endif
202 # ifndef USE_IM
203 # define USE_IM "%s %r (%h) (%t)"
204 # endif
205 #endif
207 #define DEFAULT_IM "\r\n\r\n" USE_IM "\r\n\r\n\r\n"
209 #endif /* __EXT_H__ */