2 * TNET A server program for MINIX which implements the TCP/IP
3 * suite of networking protocols. It is based on the
4 * TCP/IP code written by Phil Karn et al, as found in
5 * his NET package for Packet Radio communications.
7 * Definitions for the TELNET server.
9 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
12 extern int opt_d
; /* debugging flag */
14 int get_pty(int *, char **);
16 void term_inout(int pty_fd
);
18 void telopt(int fdout
, int what
, int option
);
19 int tel_in(int fdout
, int telout
, char *buffer
, int len
);
20 int tel_out(int fdout
, char *buf
, int size
);