1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 declare
18 (LINE_CLOSED initial (0),
19 LINE_OPENING initial (1),
20 LINE_AS_CONTROL initial (2),
21 LINE_UP_CONTROL initial (3),
22 LINE_CLOSING initial (4))
23 fixed binary (3) internal static options (constant);
24
25 declare
26 LINE_states (0 : 4) character (28) internal static options (constant) initial (
27 "Line closed",
28 "Line opening",
29 "Answering Service Control",
30 "User Process Control",
31 "Line Closing");
32
33
34
35 declare
36 (TTY_DETACHED initial (0),
37 TTY_HUNGUP initial (1),
38 TTY_LISTENING initial (2),
39 TTY_EXPERIMENTING initial (3),
40 TTY_DIALED initial (5))
41 fixed binary (4) internal static options (constant);
42
43 declare
44 TTY_states (0 : 5) character (16) internal static options (constant) initial (
45 "Detached",
46 "Hungup",
47 "Listening",
48 "Experimenting",
49 "State 4?",
50 "Dialed-up");
51
52
53
54 declare
55 (PTTY_detached initial (0),
56 PTTY_attached initial (1),
57 PTTY_broken initial (2))
58 fixed binary (17) internal static options (constant);
59
60 declare
61 PTTY_states (0 : 2) character (12) internal static options (constant) initial (
62 "Detached",
63 "Attached",
64 "Broken");
65
66
67
68 declare
69 (SERVICE_unavailable initial (0),
70 SERVICE_listening initial (1),
71 SERVICE_allocation_wait initial (2),
72 SERVICE_close_wait initial (3))
73 fixed binary (3) internal static options (constant);
74
75 declare
76 SERVICE_states (0 : 3) character (16) internal static options (constant) initial (
77 "Unavailable",
78 "Listening",
79 "Allocation wait",
80 "Close wait");
81
82
83 declare
84 (LOGGER_services_off initial (0),
85 LOGGER_network_down initial (1),
86 LOGGER_services_up initial (2))
87 fixed binary (3) internal static options (constant);
88
89 declare
90 LOGGER_states (0 : 2) character (12) internal static options (constant) initial (
91 "Logger off",
92 "Network down",
93 "Logger up");
94
95 declare
96 (SERVICE_login initial (1),
97 SERVICE_ftp initial (2))
98 fixed binary (17) internal static options (constant);
99
100 declare
101 SERVICE_type (1 : 2) character (8) internal static options (constant) initial (
102 "login",
103 "FTP");
104
105
106