/* BEGIN INCLUDE FILE ... line_types.incl.pl1 */ /* Written November 10 1975 by Paul Green */ /* Modified October 1978 by Larry Johnson to include line_type_names */ /* Modified 12/19/78 by J. Stern to add POLLED_VIP line type */ /* Modified 9/27/79 by J. Stern to add X25LAP line type */ /* Modified Spring 1981 by Charles Hornig to add HDLC line type */ /* Modified May 1981 by Robert Coren to add COLTS line type */ /* Modified September 1984 by Robert Coren to correctly count VIP as a synchronous line type */ /****^ HISTORY COMMENTS: 1) change(86-02-25,Negaret), approve(87-07-13,MCR7679), audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): Add a DSA line type. 2) change(87-03-17,Beattie), approve(87-07-13,MCR7656), audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): Add HASP_OPR to identify HASP workstation consoles with login service. END HISTORY COMMENTS */ declare (LINE_MC initial (-2), LINE_TELNET initial (-1), LINE_UNKNOWN initial (0), LINE_ASCII initial (1), LINE_1050 initial (2), LINE_2741 initial (3), LINE_ARDS initial (4), LINE_SYNCH initial (5), LINE_G115 initial (6), LINE_BSC initial (7), LINE_ETX initial (8), LINE_VIP initial (9), LINE_ASYNC1 initial (10), LINE_ASYNC2 initial (11), LINE_ASYNC3 initial (12), LINE_SYNC1 initial (13), LINE_SYNC2 initial (14), LINE_SYNC3 initial (15), LINE_POLLED_VIP initial (16), LINE_X25LAP initial (17), LINE_HDLC initial (18), LINE_COLTS initial (19), LINE_DSA initial (20), LINE_HASP_OPR initial (21) ) fixed bin internal static options (constant); dcl max_line_type fixed bin int static options (constant) init (21); declare n_sync_line_types fixed bin int static options (constant) init (10); declare sync_line_type (10) fixed bin int static options (constant) init (5, 6, 7, 9, 13, 14, 15, 16, 17, 18); dcl line_types (-2:21) char (16) int static options (constant) init ( "MC", /* -2 */ "TELNET", /* -1 */ "none", /* 0 */ "ASCII", /* 1 */ "1050", /* 2 */ "2741", /* 3 */ "ARDS", /* 4 */ "Sync", /* 5 */ "G115", /* 6 */ "BSC", /* 7 */ "202ETX", /* 8 */ "VIP", /* 9 */ "ASYNC1", /* 10 */ "ASYNC2", /* 11 */ "ASYNC3", /* 12 */ "SYNC1", /* 13 */ "SYNC2", /* 14 */ "SYNC3", /* 15 */ "POLLED_VIP", /* 16 */ "X25LAP", /* 17 */ "HDLC", /* 18 */ "COLTS", /* 19 */ "DSA", /* 20 */ "HASP_OPR"); /* 21 */ /* END INCLUDE FILE ... line_types.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 */