1 2 /* "telnet_options.incl.pl1" -- this include file defines named */ 3 /* constants by which to reference the ARPANET TELNET Negotiated */ 4 /* Options. */ 5 6 /* Originally created by D. M. Wells 1977, February. */ 7 8 declare /* Description of option from "WILL"er's viewpoint: */ 9 (OPTION_binary initial (0), /* (TRANSMIT-BINARY) transmit raw data bytes */ 10 OPTION_echo initial (1), /* (ECHO) echo received characters */ 11 OPTION_reconnect initial (2), /* (RCP) will move TELNET connections */ 12 OPTION_suppress_ga initial (3), /* (SUPPRESS-GO-AHEAD) won't send go-ahead's */ 13 OPTION_nams initial (4), /* (NAMS) will control approximate message size */ 14 OPTION_status initial (5), /* (STATUS) will send option state information */ 15 OPTION_timing_mark initial (6), /* (TIMING-MARK) will put mark in return stream */ 16 OPTION_rcte initial (7), /* (RCTE) will send terminal control instructions */ 17 OPTION_line_width initial (8), /* (NAOL) will tell sender about line-width */ 18 OPTION_page_size initial (9), /* (NAOP) will tell sender about page-length */ 19 OPTION_naocrd initial (10), /* (NAOCRD) will tell sender about pads for CR's */ 20 OPTION_naohts initial (11), /* (NAOHTS) will tell sender where tab stops are */ 21 OPTION_naohtd initial (12), /* (NAOHTD) will tell sender about pads for HT's */ 22 OPTION_naoffd initial (13), /* (NAOFFD) will tell sender about pads for FF's */ 23 OPTION_naovts initial (14), /* (NAOVTS) will tell sender about vert tab stops */ 24 OPTION_naovtd initial (15), /* (NAOVTD) will tell sender about pads for VT's */ 25 OPTION_naolfd initial (16), /* (NAOLFD) will tell sender about pads for LF's */ 26 OPTION_exopl initial (255)) /* (EXTENDED-OPTIONS-LIST) will negotiate about */ 27 /* options with numbers gretaer than 255 */ 28 fixed binary (8) internal static; 29 30 /* end of include file "telnet_options.incl.pl1" */ 31