Revision 9081,
1.1 KB
checked in by ghudson, 28 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r9080,
which included commits to RCS files with non-trunk default branches.
|
Rev | Line | |
---|
[9080] | 1 | /* |
---|
| 2 | * Copyright 1995 by Paul Mattes. |
---|
| 3 | * Permission to use, copy, modify, and distribute this software and its |
---|
| 4 | * documentation for any purpose and without fee is hereby granted, |
---|
| 5 | * provided that the above copyright notice appear in all copies and that |
---|
| 6 | * both that copyright notice and this permission notice appear in |
---|
| 7 | * supporting documentation. |
---|
| 8 | */ |
---|
| 9 | |
---|
| 10 | /* |
---|
| 11 | * telnetc.h |
---|
| 12 | * Global declarations for telnet.c. |
---|
| 13 | */ |
---|
| 14 | |
---|
| 15 | /* Output buffer. */ |
---|
| 16 | extern unsigned char *obuf, *obptr; |
---|
| 17 | |
---|
| 18 | /* Spelled-out tty control character. */ |
---|
| 19 | struct ctl_char { |
---|
| 20 | char *name; |
---|
| 21 | char value[3]; |
---|
| 22 | }; |
---|
| 23 | |
---|
| 24 | extern void net_add_eor(); |
---|
| 25 | extern void net_break(); |
---|
| 26 | extern void net_charmode(); |
---|
| 27 | extern int net_connect(); |
---|
| 28 | extern void net_disconnect(); |
---|
| 29 | extern void net_exception(); |
---|
| 30 | extern void net_input(); |
---|
| 31 | extern void net_linemode(); |
---|
| 32 | extern struct ctl_char *net_linemode_chars(); |
---|
| 33 | extern void net_output(); |
---|
| 34 | extern void net_sendc(); |
---|
| 35 | extern void net_sends(); |
---|
| 36 | extern void net_send_erase(); |
---|
| 37 | extern void net_send_kill(); |
---|
| 38 | extern void net_send_werase(); |
---|
| 39 | extern Boolean net_snap_options(); |
---|
| 40 | extern void space3270out(); |
---|
| 41 | extern void trace_netdata(); |
---|
Note: See
TracBrowser
for help on using the repository browser.