source: trunk/minix/commands/telnetd/telnetd.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 732 bytes
Line 
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
12extern 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.