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 dcl pinfop ptr;
28
29 dcl 1 DIALUP_info aligned,
30 2 info_relp bit (18) unaligned,
31 2 pad bit (54) unaligned;
32
33 dcl 1 NCON_REQ_info aligned based (pinfop),
34 2 mbz fixed bin (35),
35 2 from_address char (15) varying,
36 2 to_address char (15) varying,
37 2 facilities char (16) varying,
38 2 data char (48) varying;
39
40 dcl 1 NCON_IND_info aligned,
41 2 dial_info bit (72),
42 2 his_address char (15) varying,
43 2 our_address char (15) varying,
44 2 data char (48) varying,
45 2 facilities char (16) varying;
46
47 dcl 1 NDIS_IND_REASON aligned based,
48 2 cause fixed bin (8) unaligned,
49 2 diag fixed bin (8) unaligned;
50
51 dcl 1 disconnect_info unal,
52 2 cause bit (9),
53 2 diag bit (9);
54
55 dcl 1 network_infos aligned based (pinfop),
56 2 network_address char (15) varying,
57 2 max_packet_size fixed bin;
58
59 dcl transmit_info_entries fixed bin;
60
61 dcl 1 transmit_info aligned based (pinfop),
62 2 n_entries fixed bin,
63 2 pad bit (36),
64 2 entry (transmit_info_entries refer (transmit_info.n_entries)),
65 3 data_ptr ptr,
66 3 size fixed bin (21) unsigned,
67 3 pad1 bit (36);
68
69
70
71
72 dcl protocol_event_message fixed bin (71);
73
74 dcl 1 protocol_msg based (addr (protocol_event_message)),
75 2 ev_devx fixed bin (17) unaligned,
76 2 ev_type fixed bin (17) unaligned,
77 2 ev_user_index fixed bin (17) unaligned,
78 2 infos bit (18) unaligned;
79
80 dcl NCONIND fixed bin internal static options (constant) init (1);
81 dcl NCONCONF fixed bin internal static options (constant) init (2);
82 dcl NDTIND fixed bin internal static options (constant) init (3);
83 dcl NDTRDYIND fixed bin internal static options (constant) init (4);
84 dcl NRESETIND fixed bin internal static options (constant) init (5);
85 dcl NDISIND fixed bin internal static options (constant) init (6);
86 dcl ABORT fixed bin internal static options (constant) init (7);
87
88 dcl wakeup_names (7) char (9) internal static options (constant)
89 init ("NCONIND",
90 "NCONCONF",
91 "NDTIND",
92 "NDTRYIND",
93 "NRESETIND",
94 "NDISIND",
95 "ABORT");
96
97
98