/* ---------------- BEGIN include file protocol_infos.incl.pl1 ------------- */ /****^ HISTORY COMMENTS: 1) change(89-03-20,Parisek), approve(89-06-06,MCR8110), audit(89-10-09,Farley), install(89-10-25,MR12.3-1100): Add support of protocol mpx. 2) change(89-11-03,Parisek), approve(89-11-03,PBF8110), audit(89-11-03,Farley), install(89-11-08,MR12.3-1107): Move the "transmit_info.pad1" field to the proper location, (after the "size" field). END HISTORY COMMENTS */ /* Written in June 1985 by C. Claveleira - CICB */ /* Latest version : */ /* */ /* 14 feb 1986 : C. Claveleira */ /* 20 mar 1986 : C. Claveleira - version 1.0 of protocol_mpx */ /* 31 may 1986 : C. Claveleira - version 1.3 of protocol_mpx */ /* infos exchanged between x25_mpx, protocol_mpx and Transport Layer */ dcl pinfop ptr; dcl 1 DIALUP_info aligned, 2 info_relp bit (18) unaligned, 2 pad bit (54) unaligned; dcl 1 NCON_REQ_info aligned based (pinfop), 2 mbz fixed bin (35), 2 from_address char (15) varying, 2 to_address char (15) varying, 2 facilities char (16) varying, 2 data char (48) varying; dcl 1 NCON_IND_info aligned, 2 dial_info bit (72), 2 his_address char (15) varying, 2 our_address char (15) varying, 2 data char (48) varying, 2 facilities char (16) varying; dcl 1 NDIS_IND_REASON aligned based, 2 cause fixed bin (8) unaligned, 2 diag fixed bin (8) unaligned; dcl 1 disconnect_info unal, 2 cause bit (9), 2 diag bit (9); dcl 1 network_infos aligned based (pinfop), 2 network_address char (15) varying, 2 max_packet_size fixed bin; dcl transmit_info_entries fixed bin; dcl 1 transmit_info aligned based (pinfop), 2 n_entries fixed bin, 2 pad bit (36), 2 entry (transmit_info_entries refer (transmit_info.n_entries)), 3 data_ptr ptr, 3 size fixed bin (21) unsigned, 3 pad1 bit (36); /* messages passed to the Transport Layer at the time of wakeups : */ dcl protocol_event_message fixed bin (71); dcl 1 protocol_msg based (addr (protocol_event_message)), 2 ev_devx fixed bin (17) unaligned, /* device index */ 2 ev_type fixed bin (17) unaligned, /* reason for wakeup (see below) */ 2 ev_user_index fixed bin (17) unaligned, 2 infos bit (18) unaligned; dcl NCONIND fixed bin internal static options (constant) init (1); /* type of wakeup */ dcl NCONCONF fixed bin internal static options (constant) init (2); dcl NDTIND fixed bin internal static options (constant) init (3); dcl NDTRDYIND fixed bin internal static options (constant) init (4); dcl NRESETIND fixed bin internal static options (constant) init (5); dcl NDISIND fixed bin internal static options (constant) init (6); dcl ABORT fixed bin internal static options (constant) init (7); dcl wakeup_names (7) char (9) internal static options (constant) init ("NCONIND", "NCONCONF", "NDTIND", "NDTRYIND", "NRESETIND", "NDISIND", "ABORT"); /* --------- END INCLUDE FILE ... protocol_infos.incl.pl1 ------- */ */ ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group Bull including Bull HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell Bull Inc., Groupe Bull and Bull HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, Bull or Bull HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by Bull HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved */