
	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)
