1 /* BEGIN INCLUDE FILE ... dial_manager_arg.incl.pl1 */ 2 3 /* Modified by E. N. Kittlitz 11/80 to add reservation string, move dial-out 4 destination from dial_qualifier, add dial_message. 5 Modified by Robert Coren 4/83 to add required access class stuff. 6 Modified 1984-08-27 BIM for V4, privileged_operation. 7 */ 8 9 10 dcl dial_manager_arg_version_2 fixed bin internal static initial (2) options (constant); 11 dcl dial_manager_arg_version_3 fixed bin internal static initial (3) options (constant); 12 dcl dial_manager_arg_version_4 fixed bin internal static initial (4) options (constant); 13 14 dcl 1 dial_manager_arg based aligned, 15 2 version fixed bin, /* = 4 */ 16 2 dial_qualifier char (22), /* identify different processes with same process group id */ 17 2 dial_channel fixed bin (71), /* event wait channel */ 18 2 channel_name char (32), /* channel name for privileged attach */ 19 /* limit of version 1 structure */ 20 2 dial_out_destination char (32), /* dial-out destination (e.g. phone_no) */ 21 2 reservation_string char (256), /* reservation string */ 22 2 dial_message fixed bin (71), /* OUTPUT: A.S. message received by dial_manager_ */ 23 /* limit of version 2 structure */ 24 2 access_class bit (72), /* access class to be associated with the attachment */ 25 2 flags aligned, 26 3 access_class_required bit (1) unaligned, /* indicates whether to enforce access_class */ 27 3 privileged_operation bit (1) unaligned, /* for accept_dials, accepts dials from */ 28 /* system_low:access_class */ 29 /* no effect on other operations yet. */ 30 3 mbz bit (34) unaligned; /* must be zero */ 31 32 /* END INCLUDE FILE ... dial_manager_arg.incl.pl1 */