
	telnet_suboption(4)	MudOS v21c2		(5 Sep 1994)

	名称:
		telnet_suboption - 处理 telnet 的 suboption.
	语法:
		void telnet_suboption( string buffer );

		无传回值 telnet_suboption( 字串 buffer );
	用法:
		在 mudlib 定义的处理程序下, 可互动的 (interactive) 
		物件呼叫此函式, 并将 SE telnet suboptions 作为其参数.
		例如: 未来可能藉此函式支援终端机的型式. 

		buffer  的第一个位元组 (byte) 通常是一个型态叙述值
		(type descriptor),  即 TELOPT_TTYPE.  第二个位元组是
		一个 procession option, 如 TELQUAL_IS.  之後是与型态
		相关的资料. 当此终端机型态呼叫 (terminal type call)
		之时, 这些资料将由 terminal_type() 函式处理.

		可能的 suboptions:

		#define TELQUAL_IS    0 // option 是...
		#define TELQUAL_SEND  1 // 送出 options
		#define TELQUAL_INFO  2 // ENVIRON: 
					   informational version of IS
		#define TELQUAL_REPLY 3 // AUTHENTICATION: 
					   client version of IS
		#define TELQUAL_NAME  4 // AUTHENTICATION: 
					   client version of IS
	翻译:
		Spock @ FF	97.Aug.5.		(printed 3/16/95)
