/* "net_ascii_dim_sdb_dcls.incl.pl1" -- the include file that */ /* declares the stream data block for the network ASCII DIMS. */ /* Originally created by D. M. Wells 1972, February. */ /* Modified by D. M. Wells 1974, January 3 prior to installation. */ /* Modified by D. Reed and D. M. Wells, September 1976, for options */ declare (RECEIVE initial (0), TRANSMIT initial (1)) fixed binary (1) internal static options (constant); declare 1 SDB_template aligned based, /* stream data block for network tty connection */ 2 dim_name character (32) unaligned, /* the name of this DIM */ 2 device_name_list pointer, /* threaded list of device id's */ 2 next_device pointer, /* pointer to next entry in threaded list */ 2 device_name_size fixed binary (24), /* number of chars in device name */ 2 device_name character (32) unaligned, /* device id */ 2 r_ncp_idx fixed binary (12), /* NCP index for the read socket */ 2 r_local_pin fixed binary (8), 2 w_ncp_idx fixed binary (12), /* NCP index for the write socket */ 2 w_local_pin fixed binary (8), 2 mode_section aligned, /* information which changemodes might change */ 3 modes_inconsistent bit (1), /* on if internal modes are inconsistent */ 3 current_modes aligned, /* a representation of the modes of this stream */ 4 mode_switches unaligned, /* -- those determined only by a switch */ 5 can bit (1), /* whether the input should be canonicalized */ 5 erkl bit (1), /* whether escape and kill should be done */ 5 esc bit (1), /* whether escape sequences should be understood */ 5 half bit (1), /* terminal like TTY33 */ 5 tabsin bit (1), /* whether tabs are allowed to be passed to user */ 5 edited bit (1), /* whether output non-graphic chars are deleted */ 5 red bit (1), /* we don't want ribbon shifts sent */ 5 tabs bit (1), /* whether tabs to be output as tabs or spaces */ 5 rawi bit (1), /* whether no processing done on input */ 5 rawo bit (1), /* whether no processing should be done on output */ 5 handle_quit bit (1), 4 protocol_495 bit (1) unaligned, /* whether TELNET protocol of RFC 495 is in use */ 4 allow_quits bit (1) unaligned, /* whether or not to actually generate quits */ 4 do_telnet bit (1) unaligned, /* whether or not to use new telnet at all */ 3 canon_info aligned like canon_info_template, 3 break_chars aligned, 4 break (0 : 511) bit (1) unaligned, 3 read_delim_chars aligned, 4 delim (0 : 511) bit (1) unaligned, 3 old_term_type fixed binary (17), /* the terminal type which we will say we are */ 3 terminal_type_name character (32) unaligned, /* the terminal type we are */ 3 timeout_value fixed binary (17), /* how long we will wait for various events */ 2 device_state aligned like device_state_template, 2 current_terminal_state aligned, /* current state of terminal and carriage */ 3 vacant bit (1) unaligned, /* "0"b = entry-in-use, "1"b = not_in_use */ 3 aborting_output bit (1) unaligned, /* whether all current output is being thrown away */ 2 attachment_info aligned, /* info about network attachment of this device */ 3 chan character (16) unaligned, /* symbolic name of Network host */ 3 connect_done bit (1) unaligned, /* whether a connect was done at attachment */ 3 attach_modes unaligned, 4 read bit (1), /* whether a read channel is desired */ 4 write bit (1), /* whether a write channel is desired */ 4 icp bit (1), /* whether it is desired to connect via ICP */ 4 listen bit (1), /* whether it is desired to only listen to net */ 4 connect bit (1), /* whether it is desired to connect via RFC's */ 3 read_event_channel fixed binary (71), /* IPC event channel for read side */ 3 write_event_channel fixed binary (71), /* IPC event channel for write side */ 2 nextp pointer, /* pointer to next typewriter block in chain */ 2 initial_raw_buffer aligned, 3 header like byte_buffer_header, 3 workspace aligned, 4 byte (0 : 1499) bit (9) unaligned, 2 output_buffer aligned, 3 header like byte_buffer_header, 3 workspace aligned, 4 byte8 (0 : 799) bit (8) unaligned, 2 string_ptr pointer, 2 area_ptr pointer, 2 output_ptr pointer, 2 rawbuffer_ptr pointer, 2 option_in_effect (0 : 1), /* 0 is receive options, 1 is transmit options */ 3 option (0 : 35) bit (1) unaligned, 2 option_in_negotiation (0 : 1), 3 option (0 : 35) bit (1) unaligned, 2 last_item_in_SDB bit (1) aligned; declare 1 byte_buffer_header aligned based, 2 info aligned, 3 area_ptr pointer, /* pointer to allocation area, null if not alloc */ 3 lock_word bit (36) aligned, /* locked if non-zero */ 2 buffer_bound fixed binary (24), /* hbound of the workspace byte buffer */ 2 byte_offset fixed binary (24), /* offset of first byte in workspace buffer */ 2 num_bytes fixed binary (24); /* count of valid bytes in buffer */ % include net_conversion_dcls; /* end of "net_ascii_dim_sdb_dcls.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 */