-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecupde.h
60 lines (54 loc) · 2.26 KB
/
ecupde.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*+-----------------------------------------------------------------------
ecupde.h - phone directory entry definition
------------------------------------------------------------------------*/
/*+:EDITS:*/
/*:04-26-2000-11:15-wht@bob-RELEASE 4.42 */
/*:01-24-1997-02:37-wht@yuriatin-SOURCE RELEASE 4.00 */
/*:09-22-1996-19:41-root@yuriatin-tty len to 20 for such as port/m332_c0d0 */
/*:09-11-1996-20:[email protected] telnet,curses,structural overhaul */
/*:11-23-1995-11:20-wht@kepler-source control 3.37 for tsx-11 */
/*:11-14-1995-10:[email protected] control point: SOCKETS */
/*:08-27-1995-07:43-wht@n4hgf-add rtscts_val */
/*:05-04-1994-04:38-wht@n4hgf-ECU release 3.30 */
/*:09-10-1992-13:58-wht@n4hgf-ECU release 3.20 */
/*:08-22-1992-15:38-wht@n4hgf-ECU release 3.20 BETA */
/*:03-27-1992-16:21-wht@n4hgf-re-include protection for all .h files */
/*:11-28-1991-14:56-wht@n4hgf-add dcdwatch */
/*:07-25-1991-12:56-wht@n4hgf-ECU release 3.10 */
/*:06-01-1991-23:53-wht@n4hgf-use PDE_..._LEN identifiers */
/*:08-14-1990-20:[email protected] old edit history */
#ifndef _ecupde_h
#define _ecupde_h
#define PDE_TTY_LEN 20
#define PDE_DESCR_LEN 40
#ifdef futures
#define PDE_FC_NONE 0/* no FAS: none FAS: RTS/CTS */
#define PDE_FC_XON_XOFF 1/* XON/XOFF */
#define PDE_FC_RTS_CTS 2/* no FAS: SCO RTS/CTS */
#endif
typedef struct phone_directory_entry
{
struct phone_directory_entry *next;
struct phone_directory_entry *prev;
UINT baud;
short parity; /* 0,'e','o', maybe 'm','s' */
UINT16 redial; /* if non-zero, marked for redial */
char logical[LOGICAL_LEN + 1]; /* logical name of remote */
char telno[DESTREF_LEN + 1]; /* telno for remote or null */
char tty[PDE_TTY_LEN + 1]; /* ttyname for access */
char descr[PDE_DESCR_LEN + 1]; /* description of remote */
#ifdef futures
UINT zwindw_size; /* default ZMODEM window size */
uchar flow_control; /* PDE_FC_... flow control */
#endif
uchar debug_level; /* -x debug level for dialer */
uchar dcdwatch; /* how to set shm->Ldcdwatch on successful
* connect '0': off '1': on 't': terminate
* 'n': no change */
uchar rtscts_val; /* how to set shm->Lrtscts_val */
}
PDE;
#endif /* _ecupde_h */
/* vi: set tabstop=4 shiftwidth=4: */
/* end of ecupde.h */