TELNET.H
上传用户:kesirui
上传日期:2007-01-07
资源大小:263k
文件大小:4k
源码类别:

Internet/网络编程

开发平台:

WINDOWS

  1. /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
  2. /*   All Rights Reserved   */
  3. /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
  4. /* The copyright notice above does not evidence any    */
  5. /* actual or intended publication of such source code. */
  6. /*
  7.  * +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  8.  * PROPRIETARY NOTICE (Combined)
  9.  *
  10.  * This source code is unpublished proprietary information
  11.  * constituting, or derived under license from AT&T's UNIX(r) System V.
  12.  * In addition, portions of such source code were derived from Berkeley
  13.  * 4.3 BSD under license from the Regents of the University of
  14.  * California.
  15.  *
  16.  *
  17.  *
  18.  * Copyright Notice
  19.  *
  20.  * Notice of copyright on this source code product does not indicate
  21.  * publication.
  22.  *
  23.  * (c) 1986,1987,1988,1989  Sun Microsystems, Inc
  24.  * (c) 1983,1984,1985,1986,1987,1988,1989  AT&T.
  25.  * All rights reserved.
  26.  *
  27.  */
  28. #ifndef _ARPA_TELNET_H
  29. #define _ARPA_TELNET_H
  30. #pragma ident "@(#)telnet.h 1.6 92/07/14 SMI" /* SVr4.0 1.1 */
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /*
  35.  * Definitions for the TELNET protocol.
  36.  */
  37. #define IAC 255 /* interpret as command: */
  38. #define DONT 254 /* you are not to use option */
  39. #define DO 253 /* please, you use option */
  40. #define WONT 252 /* I won't use option */
  41. #define WILL 251 /* I will use option */
  42. #define SB 250 /* interpret as subnegotiation */
  43. #define GA 249 /* you may reverse the line */
  44. #define EL 248 /* erase the current line */
  45. #define EC 247 /* erase the current character */
  46. #define AYT 246 /* are you there */
  47. #define AO 245 /* abort output--but let prog finish */
  48. #define IP 244 /* interrupt process--permanently */
  49. #define BREAK 243 /* break */
  50. #define DM 242 /* data mark--for connect. cleaning */
  51. #define NOP 241 /* nop */
  52. #define SE 240 /* end sub negotiation */
  53. #define EOR 239 /* end of record (transparent mode) */
  54. #define SYNCH 242 /* for telfunc calls */
  55. #ifdef TELCMDS
  56. char *telcmds[] = {
  57. "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
  58. "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC",
  59. };
  60. #endif
  61. /* telnet options */
  62. #define TELOPT_BINARY 0 /* 8-bit data path */
  63. #define TELOPT_ECHO 1 /* echo */
  64. #define TELOPT_RCP 2 /* prepare to reconnect */
  65. #define TELOPT_SGA 3 /* suppress go ahead */
  66. #define TELOPT_NAMS 4 /* approximate message size */
  67. #define TELOPT_STATUS 5 /* give status */
  68. #define TELOPT_TM 6 /* timing mark */
  69. #define TELOPT_RCTE 7 /* remote controlled transmission and echo */
  70. #define TELOPT_NAOL  8 /* negotiate about output line width */
  71. #define TELOPT_NAOP  9 /* negotiate about output page size */
  72. #define TELOPT_NAOCRD 10 /* negotiate about CR disposition */
  73. #define TELOPT_NAOHTS 11 /* negotiate about horizontal tabstops */
  74. #define TELOPT_NAOHTD 12 /* negotiate about horizontal tab disposition */
  75. #define TELOPT_NAOFFD 13 /* negotiate about formfeed disposition */
  76. #define TELOPT_NAOVTS 14 /* negotiate about vertical tab stops */
  77. #define TELOPT_NAOVTD 15 /* negotiate about vertical tab disposition */
  78. #define TELOPT_NAOLFD 16 /* negotiate about output LF disposition */
  79. #define TELOPT_XASCII 17 /* extended ascic character set */
  80. #define TELOPT_LOGOUT 18 /* force logout */
  81. #define TELOPT_BM 19 /* byte macro */
  82. #define TELOPT_DET 20 /* data entry terminal */
  83. #define TELOPT_SUPDUP 21 /* supdup protocol */
  84. #define TELOPT_SUPDUPOUTPUT 22 /* supdup output */
  85. #define TELOPT_SNDLOC 23 /* send location */
  86. #define TELOPT_TTYPE 24 /* terminal type */
  87. #define TELOPT_EOR 25 /* end or record */
  88. #define TELOPT_EXOPL 255 /* extended-options-list */
  89. #ifdef TELOPTS
  90. #define NTELOPTS (1+TELOPT_EOR)
  91. char *telopts[NTELOPTS] = {
  92. "BINARY", "ECHO", "RCP", "SUPPRESS GO AHEAD", "NAME",
  93. "STATUS", "TIMING MARK", "RCTE", "NAOL", "NAOP",
  94. "NAOCRD", "NAOHTS", "NAOHTD", "NAOFFD", "NAOVTS",
  95. "NAOVTD", "NAOLFD", "EXTEND ASCII", "LOGOUT", "BYTE MACRO",
  96. "DATA ENTRY TERMINAL", "SUPDUP", "SUPDUP OUTPUT",
  97. "SEND LOCATION", "TERMINAL TYPE", "END OF RECORD",
  98. };
  99. #endif
  100. /* sub-option qualifiers */
  101. #define TELQUAL_IS 0 /* option is... */
  102. #define TELQUAL_SEND 1 /* send option */
  103. #ifdef __cplusplus
  104. }
  105. #endif
  106. #endif /* _ARPA_TELNET_H */