Rev | Line | |
---|
[9] | 1 | /*
|
---|
| 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.
|
---|
| 6 | *
|
---|
| 7 | * Definitions for the TELNET server.
|
---|
| 8 | *
|
---|
| 9 | * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
|
---|
| 10 | */
|
---|
| 11 |
|
---|
| 12 | extern int opt_d; /* debugging flag */
|
---|
| 13 |
|
---|
| 14 | _PROTOTYPE(int get_pty, (int *, char **));
|
---|
| 15 | _PROTOTYPE(void term_init, (void));
|
---|
| 16 | _PROTOTYPE(void term_inout, (int pty_fd));
|
---|
| 17 | _PROTOTYPE(void tel_init, (void));
|
---|
| 18 | _PROTOTYPE(void telopt, (int fdout, int what, int option));
|
---|
| 19 | _PROTOTYPE(int tel_in, (int fdout, int telout, char *buffer, int len));
|
---|
| 20 | _PROTOTYPE(int tel_out, (int fdout, char *buf, int size));
|
---|
Note:
See
TracBrowser
for help on using the repository browser.