ckctel.h
上传用户:dufan58
上传日期:2007-01-05
资源大小:3407k
文件大小:31k
源码类别:

通讯/手机编程

开发平台:

Windows_Unix

  1. /* ckctel.h -- Symbol and macro definitions for C-Kermit telnet support */
  2. /*
  3.   Authors: Jeffrey Altman <jaltman@columbia.edu>,
  4.            Frank da Cruz <fdc@columbia.edu>
  5.   Columbia University Academic Information Systems, New York City.
  6.   Copyright (C) 1985, 2000,
  7.     Trustees of Columbia University in the City of New York.
  8.     All rights reserved.  See the C-Kermit COPYING.TXT file or the
  9.     copyright text in the ckcmai.c module for disclaimer and permissions.
  10.   Notes:
  11.   . Only one source file should include #defines for
  12.     TELCMDS, TELOPTS, TELOPT_STATES, SLC_NAMES, and AUTH_NAMES.
  13.   . This file should be used inplace of "arpa/telnet.h"
  14. */
  15. #ifndef CKCTEL_H
  16. #define CKCTEL_H
  17. /*
  18.   Definitions for the TELNET protocol.
  19.   can't rely on library header files for any of them.
  20. */
  21. #ifndef IAC /* First the telnet commands */
  22. #define IAC 255
  23. #endif /* IAC */
  24. #ifndef DONT
  25. #define DONT 254
  26. #endif /* DONT */
  27. #ifndef DO
  28. #define DO 253
  29. #endif /* DO */
  30. #ifndef WONT
  31. #define WONT 252
  32. #endif /* WONT */
  33. #ifndef WILL
  34. #define WILL 251
  35. #endif /* WILL */
  36. #ifndef SB
  37. #define SB 250
  38. #endif /* SB */
  39. #ifndef TN_GA
  40. #define TN_GA 249
  41. #endif /* TN_GA */
  42. #ifndef TN_EL
  43. #define TN_EL 248
  44. #endif /* TN_EL */
  45. #ifndef TN_EC
  46. #define TN_EC 247
  47. #endif /* TN_EC */
  48. #ifndef TN_AYT
  49. #define TN_AYT 246
  50. #endif /* TN_AYT */
  51. #ifndef TN_AO
  52. #define TN_AO 245
  53. #endif /* TN_AO */
  54. #ifndef TN_IP
  55. #define TN_IP 244
  56. #endif /* TN_IP */
  57. #ifndef BREAK
  58. #define BREAK 243
  59. #endif /* BREAK */
  60. #ifndef TN_DM
  61. #define TN_DM 242
  62. #endif /* TN_DM */
  63. #ifndef TN_NOP
  64. #define TN_NOP 241
  65. #endif /* TN_NOP */
  66. #ifndef SE
  67. #define SE 240
  68. #endif /* SE */
  69. #ifndef TN_EOR
  70. #define TN_EOR 239
  71. #endif /* TN_EOR */
  72. #ifndef TN_ABORT
  73. #define TN_ABORT 238
  74. #endif /* TN_ABORT */
  75. #ifndef TN_SUSP
  76. #define TN_SUSP 237
  77. #endif /* TN_SUSP */
  78. #ifndef TN_EOF
  79. #define TN_EOF 236
  80. #endif /* TN_EOF */
  81. #ifndef LAST_TN_CMD
  82. #define LAST_TN_CMD 236
  83. #define TN_SAK 200              /* IBM Secure Attention Key */
  84. #endif /* LAST_TN_CMD */
  85. #define SYNCH 242 /* for telfunc calls */
  86. #ifdef TELCMDS
  87. char *telcmds[] = {
  88. "EOF", "SUSP", "ABORT", "EOR",
  89. "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
  90. "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0
  91. };
  92. #else /* TELCMDS */
  93. extern char *telcmds[];
  94. #endif /* TELCMDS */
  95. #define TELCMD_FIRST TN_EOF
  96. #define TELCMD_LAST IAC
  97. #define TELCMD_OK(x) ((unsigned int)(x) <= TELCMD_LAST && 
  98.  (unsigned int)(x) >= TELCMD_FIRST || 
  99.                           (unsigned int)(x) == TN_SAK)
  100. #define TELCMD(x) (TELCMD_OK(x)? ((x) == TN_SAK?"SAK": 
  101.                          telcmds[(x)-TELCMD_FIRST]):"UNKNOWN")
  102. /* Then the options */
  103. /* NB: the following platforms have TELOPT_AUTHENTICATION defined as */
  104. /* 45 instead of 37.                                                 */
  105. #ifdef TELOPT_AUTHENTICATION
  106. #ifdef __osf__
  107. #undef TELOPT_AUTHENTICATION
  108. #endif /* __osf__ */
  109. #ifndef IRIX
  110. #undef TELOPT_AUTHENTICATION
  111. #endif /* IRIX */
  112. #ifndef ultrix
  113. #undef TELOPT_AUTHENTICATION
  114. #endif /* ultrix */
  115. #endif /* TELOPT_AUTHENTICATION */
  116. /* telnet options */
  117. #ifndef TELOPT_BINARY
  118. #define TELOPT_BINARY 0 /* 8-bit data path (RFC 856)*/
  119. #endif
  120. #ifndef TELOPT_ECHO
  121. #define TELOPT_ECHO 1 /* echo (RFC 857)*/
  122. #endif
  123. #ifndef TELOPT_RCP
  124. #define TELOPT_RCP 2 /* prepare to reconnect (NIC 50005)*/
  125. #endif
  126. #ifndef TELOPT_SGA
  127. #define TELOPT_SGA 3 /* suppress go ahead (RFC 858) */
  128. #endif
  129. #ifndef TELOPT_NAMS
  130. #define TELOPT_NAMS 4 /* approximate message size (ETHERNET) */
  131. #endif
  132. #ifndef TELOPT_STATUS
  133. #define TELOPT_STATUS 5 /* give status (RFC 859) */
  134. #endif
  135. #ifndef TELOPT_TM
  136. #define TELOPT_TM 6 /* timing mark (RFC 860) */
  137. #endif
  138. #ifndef TELOPT_RCTE
  139. #define TELOPT_RCTE 7 /* remote controlled transmission and echo */
  140. #endif                          /* (RFC 726) */
  141. #ifndef TELOPT_NAOL
  142. #define TELOPT_NAOL  8 /* negotiate about output line width */
  143. #endif                          /* (NIC 50005) */
  144. #ifndef TELOPT_NAOP
  145. #define TELOPT_NAOP  9 /* negotiate about output page size */
  146. #endif                          /* (NIC 50005) */
  147. #ifndef TELOPT_NAOCRD
  148. #define TELOPT_NAOCRD 10 /* negotiate about CR disposition (RFC 652) */
  149. #endif                          /* [Historic] */
  150. #ifndef TELOPT_NAOHTS
  151. #define TELOPT_NAOHTS 11 /* negotiate about horizontal tabstops */
  152. #endif                          /* (RFC 653) [Historic] */
  153. #ifndef TELOPT_NAOHTD
  154. #define TELOPT_NAOHTD 12 /* negotiate about horiz tab disposition */
  155. #endif                          /* (RFC 654) [Historic] */
  156. #ifndef TELOPT_NAOFFD
  157. #define TELOPT_NAOFFD 13 /* negotiate about formfeed disposition */
  158. #endif                          /* (RFC 655) [Historic] */
  159. #ifndef TELOPT_NAOVTS
  160. #define TELOPT_NAOVTS 14 /* negotiate about vertical tab stops */
  161. #endif                          /* (RFC 656) [Historic] */
  162. #ifndef TELOPT_NAOVTD
  163. #define TELOPT_NAOVTD 15 /* negotiate about vertical tab disposition */
  164. #endif                          /* (RFC 657) [Historic] */
  165. #ifndef TELOPT_NAOLFD
  166. #define TELOPT_NAOLFD 16 /* negotiate about output LF disposition */
  167. #endif                          /* (RFC 658) [Historic] */
  168. #ifndef TELOPT_XASCII
  169. #define TELOPT_XASCII 17 /* extended ascii character set */
  170. #endif                          /* (RFC 698) */
  171. #ifndef TELOPT_LOGOUT
  172. #define TELOPT_LOGOUT 18 /* force logout (RFC 727) */
  173. #endif
  174. #ifndef TELOPT_BM
  175. #define TELOPT_BM 19 /* byte macro (RFC 735) */
  176. #endif
  177. #ifndef TELOPT_DET
  178. #define TELOPT_DET 20 /* data entry terminal (RFC 1043, 732) */
  179. #endif
  180. #ifndef TELOPT_SUPDUP
  181. #define TELOPT_SUPDUP 21 /* supdup protocol (RFC 736, 734) */
  182. #endif
  183. #ifndef TELOPT_SUPDUPOUTPUT
  184. #define TELOPT_SUPDUPOUTPUT 22 /* supdup output (RFC 749) */
  185. #endif
  186. #ifndef TELOPT_SNDLOC
  187. #define TELOPT_SNDLOC 23 /* send location (RFC 779) */
  188. #endif
  189. #ifndef TELOPT_TTYPE
  190. #define TELOPT_TTYPE 24 /* terminal type (RFC 1091) */
  191. #endif
  192. #ifndef TELOPT_EOR
  193. #define TELOPT_EOR 25 /* end or record (RFC 885) */
  194. #endif
  195. #ifndef TELOPT_TUID
  196. #define TELOPT_TUID 26 /* TACACS user identification (RFC 927) */
  197. #endif
  198. #ifndef TELOPT_OUTMRK
  199. #define TELOPT_OUTMRK 27 /* output marking (RFC 933) */
  200. #endif
  201. #ifndef TELOPT_TTYLOC
  202. #define TELOPT_TTYLOC 28 /* terminal location number (RFC 946) */
  203. #endif
  204. #ifndef TELOPT_3270REGIME
  205. #define TELOPT_3270REGIME 29 /* 3270 regime (RFC 1041) */
  206. #endif
  207. #ifndef TELOPT_X3PAD
  208. #define TELOPT_X3PAD 30 /* X.3 PAD (RFC 1053) */
  209. #endif
  210. #ifndef TELOPT_NAWS
  211. #define TELOPT_NAWS 31 /* window size (RFC 1073) */
  212. #endif
  213. #ifndef TELOPT_TSPEED
  214. #define TELOPT_TSPEED 32 /* terminal speed (RFC 1079) */
  215. #endif
  216. #ifndef TELOPT_LFLOW
  217. #define TELOPT_LFLOW 33 /* remote flow control (RFC 1372) */
  218. #endif
  219. #ifndef TELOPT_LINEMODE
  220. #define TELOPT_LINEMODE 34 /* Linemode option (RFC 1184) */
  221. #endif
  222. #ifndef TELOPT_XDISPLOC
  223. #define TELOPT_XDISPLOC 35 /* X Display Location (RFC 1096) */
  224. #endif
  225. #ifndef TELOPT_OLD_ENVIRON
  226. #define TELOPT_OLD_ENVIRON 36 /* Old - Environment variables (RFC 1408) */
  227. #endif
  228. #ifndef TELOPT_AUTHENTICATION
  229. #define TELOPT_AUTHENTICATION 37/* Authenticate (RFC 1409) */
  230. #endif
  231. #ifndef TELOPT_ENCRYPTION
  232. #define TELOPT_ENCRYPTION 38    /* Encryption option (Borman,Tso) */
  233. #endif
  234. #ifndef TELOPT_NEWENVIRON
  235. #define TELOPT_NEWENVIRON 39    /* New - Environment variables (RFC 1572) */
  236. #endif
  237. #ifndef TELOPT_3270E
  238. #define TELOPT_3270E    40      /* 3270 Extended (RFC 1647) */
  239. #endif
  240. #ifndef TELOPT_XAUTH
  241. #define TELOPT_XAUTH    41      /* ??? (Earhart) */
  242. #endif
  243. #ifndef TELOPT_CHARSET
  244. #define TELOPT_CHARSET  42      /* Character-set (RFC 2066) */
  245. #endif
  246. #ifndef TELOPT_RSP
  247. #define TELOPT_RSP      43      /* Remote Serial Port (Barnes) */
  248. #endif
  249. #ifndef TELOPT_COM_PORT
  250. #define TELOPT_COM_PORT 44      /* Com Port Control (RFC 2217) */
  251. #endif
  252. #ifndef TELOPT_SLE
  253. #define TELOPT_SLE      45      /* Suppress Local Echo (Atmar) - rejected */
  254. #endif
  255. #ifndef TELOPT_START_TLS
  256. #define TELOPT_START_TLS 46     /* Start TLS Authentication/Encryption */
  257. #endif                          /* (Boe) */
  258. #ifndef TELOPT_KERMIT
  259. #define TELOPT_KERMIT   47      /* Kermit (altman) */
  260. #endif
  261. #ifndef TELOPT_SEND_URL
  262. #define TELOPT_SEND_URL 48      /* Send URL */
  263. #endif
  264. #ifndef TELOPT_FORWARD_X
  265. #define TELOPT_FORWARD_X 49     /* X Windows Forwarding (not yet allocated) */
  266. #endif /* TELOPT_FORWARD_X */
  267. #ifndef TELOPT_PRAGMA_LOGON
  268. #define TELOPT_PRAGMA_LOGON 138 /* Encrypted Logon option (PragmaSys) */
  269. #endif
  270. #ifndef TELOPT_SSPI_LOGON
  271. #define TELOPT_SSPI_LOGON 139   /* MS SSPI Logon option (PragmaSys) */
  272. #endif
  273. #ifndef TELOPT_PRAGMA_HEARTBEAT
  274. /* Server Send Heartbeat option (PragmaSys) */
  275. #define TELOPT_PRAGMA_HEARTBEAT 140
  276. #endif
  277. #define TELOPT_IBM_SAK 200      /* IBM Secure Attention Key */
  278. /*
  279.   IBM Secure Attention Key (SAK) Option
  280.   In addition to terminal negotiation, the telnet command allows
  281.   negotiation for the Secure Attention Key (SAK)
  282.   option. This option, when supported, provides the local user with
  283.   a secure communication path to the remote
  284.   host for tasks such as changing user IDs or passwords. If the remote
  285.   host supports the SAK function, a trusted
  286.   shell is opened on the remote host when the telnet send sak
  287.   subcommand is issued. The SAK function can
  288.   also be assigned to a single key available in telnet input mode,
  289.   using the set sak subcommand.
  290.   TN_SAK
  291.   Sends the TELNET SAK (Secure Attention Key) sequence, which causes
  292.   the remote system to invoke the trusted shell. If the SAK is not
  293.   supported, then an error message is displayed that reads:
  294.     Remote side does not support SAK.
  295. */
  296. #ifndef TELOPT_EXOPL
  297. #define TELOPT_EXOPL 255 /* Extended-options-list (RFC 861) */
  298. #endif
  299. #ifdef NTELOPTS
  300. #undef NTELOPTS
  301. #endif /* NTELOPTS */
  302. /* The Telnet Option space is no longer being allocated by ICANN as a */
  303. /* continuous list.  In other words it is becoming sparse.  But we do */
  304. /* not want to have to allocate memory for a long list of strings and */
  305. /* structs which will never be used.  Therefore, the NTELOPTS define  */
  306. /* can no longer be equal to TELOPT_LAST+1.  In fact, the notion of   */
  307. /* TELOPT_FIRST and TELOPT_LAST no longer make sense.                 */
  308. #define NTELOPTS        54
  309. #define TELOPT_FIRST     TELOPT_BINARY
  310. #define TELOPT_LAST      TELOPT_IBM_SAK
  311. /*
  312.   The following macros speed us up at runtime but are too complex
  313.   for some preprocessors / compilers; if your compiler bombs on ckctel.c
  314.   with "Instruction table overflow" or somesuch, rebuild with -DNOTOMACROS.
  315. */
  316. #ifndef NOTOMACROS
  317. #ifndef TELOPT_MACRO
  318. #define TELOPT_MACRO
  319. #endif /* TELOPT_MACRO */
  320. #endif /* NOTOMACROS */
  321. #ifdef TELOPT_MACRO
  322. #define TELOPT_INDEX(x) (((x)>=0 && (x)<= TELOPT_FORWARD_X)?(x):
  323.         ((x)>=TELOPT_PRAGMA_LOGON && (x)<=TELOPT_PRAGMA_HEARTBEAT)?(x)-89: 
  324.         ((x) == TELOPT_IBM_SAK)?(x)-148: NTELOPTS)
  325. #define TELOPT_OK(x) (((x) >= TELOPT_BINARY && (x) <= TELOPT_FORWARD_X) ||
  326.              ((x) >= TELOPT_PRAGMA_LOGON && (x) <= TELOPT_PRAGMA_HEARTBEAT) ||
  327.              ((x) == TELOPT_IBM_SAK))
  328. #define TELOPT(x) (TELOPT_OK(x)?telopts[TELOPT_INDEX(x)]:"UNKNOWN")
  329. #else /* TELOPT_MACRO */
  330. _PROTOTYP(int telopt_index,(int));
  331. _PROTOTYP(int telopt_ok,(int));
  332. _PROTOTYP(CHAR * telopt, (int));
  333. #define TELOPT_INDEX(x) telopt_index(x)
  334. #define TELOPT_OK(x)    telopt_ok(x)
  335. #define TELOPT(x)       telopt(x)
  336. #endif /* TELOPT_MACRO */
  337. #ifdef TELOPTS
  338. char *telopts[NTELOPTS+2] = {
  339. /*   0 */ "BINARY",   "ECHO",         "RCP",  "SUPPRESS-GO-AHEAD",
  340. /*   4 */ "NAME",   "STATUS", "TIMING-MARK", "RCTE",
  341. /*   8 */ "NAOL", "NAOP",  "NAOCRD", "NAOHTS",
  342. /*  12 */ "NAOHTD", "NAOFFD", "NAOVTS",  "NAOVTD",
  343. /*  16 */ "NAOLFD", "EXTEND-ASCII", "LOGOUT", "BYTE-MACRO",
  344. /*  20 */ "DATA-ENTRY-TERMINAL", "SUPDUP", "SUPDUP-OUTPUT",  "SEND-LOCATION",
  345. /*  24 */ "TERMINAL-TYPE",  "END-OF-RECORD", "TACACS-UID", "OUTPUT-MARKING",
  346. /*  28 */ "TTYLOC", "3270-REGIME", "X.3-PAD", "NAWS",
  347. /*  32 */ "TSPEED", "LFLOW", "LINEMODE", "XDISPLOC",
  348. /*  36 */ "OLD-ENVIRON", "AUTHENTICATION", "ENCRYPTION", "NEW-ENVIRONMENT",
  349. /*  40 */ "TN3270E","XAUTH","CHARSET", "remote-serial-port",
  350. /*  44 */ "COM-PORT-CONTROL","suppress-local-echo","start-tls","kermit",
  351. /*  48 */ "send-url", "forward-X",
  352. /* 138 */ "pragma-logon", "sspi-logon", "pragma-heartbeat",
  353. /* 200 */ "ibm-sak",
  354.           "unknown",
  355. 0
  356. };
  357. #else /*TELOPTS */
  358. extern char * telopts[];
  359. #endif /* TELOPTS */
  360. /* TELNET Newline Mode */
  361. #define TNL_CR     0 /* CR sends bare carriage return */
  362. #define TNL_CRNUL  1 /* CR and NUL */
  363. #define TNL_CRLF   2 /* CR and LF */
  364. #define TNL_LF     3 /* LF instead of CR */
  365. /* TELNET Negotiation Mode */
  366. #define    TN_NG_RF  0 /*  Negotiation REFUSED */
  367. #define    TN_NG_AC  1 /*  Negotiation ACCEPTED */
  368. #define    TN_NG_RQ  2 /*  Negotiation REQUESTED */
  369. #define    TN_NG_MU  3 /*  Negotiation REQUIRED (must) */
  370. /* Systems where we know we can define TELNET NAWS automatically. */
  371. #ifndef CK_NAWS /* In other words, if both */
  372. #ifdef CK_TTGWSIZ /* TNCODE and TTGWSIZ are defined */
  373. #define CK_NAWS /* then we can do NAWS. */
  374. #endif /* CK_TTGWSIZ */
  375. #endif /* CK_NAWS */
  376. #ifdef CK_FORWARD_X
  377. #define MAXFWDX 64                      /* Num of X windows to be fwd'd */
  378. #endif /* MAXFWDX */
  379. /* Telnet State structures and definitions */
  380. struct _telopt_state {
  381.   unsigned char def_server_me_mode;   /* Default Negotiation Mode */
  382.   unsigned char def_server_u_mode;    /* Default Negotiation Mode */
  383.   unsigned char def_client_me_mode;   /* Default Negotiation Mode */
  384.   unsigned char def_client_u_mode;    /* Default Negotiation Mode */
  385.   unsigned char me_mode;              /* Telnet Negotiation Mode */
  386.   unsigned char u_mode;               /* Telnet Negotiation Mode */
  387.   unsigned char me;                   /* Am I ?                  */
  388.   unsigned char u;                    /* Are you?                */
  389.   unsigned char unanswered_will;      /* Sent Will, Waiting for DO/DONT */
  390.   unsigned char unanswered_do;        /* Send DO, Waiting for WILL/WONT */
  391.   unsigned char unanswered_wont;      /* Sent WONT, Waiting for DONT */
  392.   unsigned char unanswered_dont;      /* Sent DONT, Waiting for WONT */
  393.   unsigned char unanswered_sb;        /* Sent SB,   Waiting for SB (server) */
  394.   union {
  395. #ifdef IKS_OPTION
  396.     struct _telopt_kermit {         /* Kermit Option States */
  397.       unsigned char me_start;       /* I have a Server active */
  398.       unsigned char me_req_start;   /* Sent Req-Start, Waiting for response */
  399.       unsigned char me_req_stop;    /* Sent Req-Stop, Waiting for response  */
  400.       unsigned char u_start;        /* You have a Server active */
  401.       unsigned char sop;            /* Have we received the SOP char? */
  402.     } kermit;
  403. #endif /* IKS_OPTION */
  404. #ifdef CK_ENCRYPTION
  405.     struct _telopt_encrypt {        /* Encryption Option States */
  406.       unsigned char need_to_send;
  407.       unsigned char  stop;          /* Is encryption stopped?   */
  408.     } encrypt;
  409. #endif /* CK_ENCRYPTION */
  410. #ifdef CK_NAWS
  411.     struct _telopt_naws {           /* NAWS Option Information  */
  412.       unsigned char need_to_send;
  413.       int x;                        /* Last Width               */
  414.       int y;                        /* Last Height              */
  415.     } naws;
  416. #endif /* CK_NAWS */
  417. #ifdef CK_SSL
  418.     struct _telopt_start_tls {      /* Start TLS Option             */
  419.        unsigned char u_follows;     /* u ready for TLS negotiation  */
  420.        unsigned char me_follows;    /* me ready for TLS negotiation */
  421.     } start_tls;
  422. #endif /* CK_SSL */
  423.     struct _telopt_term {          /* Terminal Type            */
  424.        unsigned char need_to_send;
  425.        unsigned char type[41];     /* Last terminal type       */
  426.     } term;
  427. #ifdef CK_ENVIRONMENT
  428.     struct _telopt_new_env {
  429.        unsigned char need_to_send;
  430.        unsigned char * str;
  431.        int             len;
  432.     } env;
  433. #ifdef CK_XDISPLOC
  434.     struct _telopt_xdisp {
  435.        unsigned char need_to_send;
  436.     } xdisp;
  437. #endif /* CK_XDISPLOC */
  438. #endif /* CK_ENVIRONMENT */
  439. #ifdef CK_SNDLOC
  440.     struct _telopt_sndloc {
  441.        unsigned char need_to_send;
  442.     } sndloc;
  443. #endif /* CK_SNDLOC */
  444. #ifdef CK_FORWARD_X
  445.     struct _telopt_fwd_x {
  446.         unsigned char need_to_send;
  447.         int listen_socket;
  448.         struct _channel {
  449.             int fd;
  450.             int id;
  451.         } channel[MAXFWDX];
  452. #ifdef NT
  453.         int thread_started;
  454. #endif /* NT */
  455.     } forward_x;
  456. #endif /* CK_FORWARD_X */
  457.     /* additional options such as New Environment or Send Location */
  458.   } sb;
  459. };
  460. typedef struct _telopt_state telopt_state, *p_telopt_state;
  461. /* telopt_states[] is the array of structs which the state of each telnet */
  462. /* option is stored.  We allocate one more than we need in case we are    */
  463. /* sent telnet options that we do not recognize.  If by some chance the   */
  464. /* TELOPT_OK() check is skipped, TELOPT_INDEX() will force the option to  */
  465. /* use the extra cell.                                                    */
  466. #ifdef TELOPT_STATES
  467. telopt_state telopt_states[NTELOPTS+1];
  468. #else /* TELOPT_STATES */
  469. extern telopt_state telopt_states[];
  470. #endif /* TELOPT_STATES */
  471. #define TELOPT_ME(x) (telopt_states[TELOPT_INDEX(x)].me)
  472. #define TELOPT_U(x)  (telopt_states[TELOPT_INDEX(x)].u)
  473. #define TELOPT_ME_MODE(x) 
  474.         (telopt_states[TELOPT_INDEX(x)].me_mode)
  475. #define TELOPT_U_MODE(x)  
  476.         (telopt_states[TELOPT_INDEX(x)].u_mode)
  477. #define TELOPT_UNANSWERED_WILL(x) 
  478.         (telopt_states[TELOPT_INDEX(x)].unanswered_will)
  479. #define TELOPT_UNANSWERED_DO(x)   
  480.         (telopt_states[TELOPT_INDEX(x)].unanswered_do)
  481. #define TELOPT_UNANSWERED_WONT(x) 
  482.         (telopt_states[TELOPT_INDEX(x)].unanswered_wont)
  483. #define TELOPT_UNANSWERED_DONT(x)   
  484.         (telopt_states[TELOPT_INDEX(x)].unanswered_dont)
  485. #define TELOPT_UNANSWERED_SB(x)   
  486.         (telopt_states[TELOPT_INDEX(x)].unanswered_sb)
  487. #define TELOPT_SB(x) 
  488.         (telopt_states[TELOPT_INDEX(x)].sb)
  489. #define TELOPT_DEF_S_ME_MODE(x) 
  490.         (telopt_states[TELOPT_INDEX(x)].def_server_me_mode)
  491. #define TELOPT_DEF_S_U_MODE(x)  
  492.         (telopt_states[TELOPT_INDEX(x)].def_server_u_mode)
  493. #define TELOPT_DEF_C_ME_MODE(x) 
  494.         (telopt_states[TELOPT_INDEX(x)].def_client_me_mode)
  495. #define TELOPT_DEF_C_U_MODE(x)  
  496.         (telopt_states[TELOPT_INDEX(x)].def_client_u_mode)
  497. #ifdef TELOPT_MODES
  498. char * telopt_modes[4] = {
  499.     "REFUSED", "ACCEPTED", "REQUESTED", "REQUIRED"
  500. };
  501. #else /* TELOPT_MODES */
  502. extern char * telopt_modes[];
  503. #endif /* TELOPT_MODES */
  504. #ifdef TELOPT_MACRO
  505. #define TELOPT_MODE_OK(x) ((unsigned int)(x) <= TN_NG_MU)
  506. #define TELOPT_MODE(x) (TELOPT_MODE_OK(x)?telopt_modes[(x)-TN_NG_RF]:"UNKNOWN")
  507. #else /* TELOPT_MACRO */
  508. _PROTOTYP(int telopt_mode_ok,(int));
  509. _PROTOTYP(CHAR * telopt_mode,(int));
  510. #define TELOPT_MODE_OK(x) telopt_mode_ok(x)
  511. #define TELOPT_MODE(x)    telopt_mode(x)
  512. #endif /* TELOPT_MACRO */
  513. /* Sub-option qualifiers */
  514. #define TELQUAL_IS 0 /* option is... */
  515. #define TELQUAL_SEND 1 /* send option */
  516. #define TELQUAL_INFO 2 /* ENVIRON: informational version of IS */
  517. #define TELQUAL_REPLY 2 /* AUTHENTICATION: client version of IS */
  518. #define TELQUAL_NAME 3 /* AUTHENTICATION: client version of IS */
  519. #define TEL_ENV_VAR     0
  520. #define TEL_ENV_VALUE   1
  521. #define TEL_ENV_ESC     2
  522. #define TEL_ENV_USERVAR 3
  523. #define LFLOW_OFF 0 /* Disable remote flow control */
  524. #define LFLOW_ON 1 /* Enable remote flow control */
  525. #define LFLOW_RESTART_ANY 2 /* Restart output on any char */
  526. #define LFLOW_RESTART_XON 3 /* Restart output only on XON */
  527. /*
  528.  * LINEMODE suboptions
  529.  */
  530. #define LM_MODE 1
  531. #define LM_FORWARDMASK 2
  532. #define LM_SLC 3
  533. #define MODE_EDIT 0x01
  534. #define MODE_TRAPSIG 0x02
  535. #define MODE_ACK 0x04
  536. #define MODE_SOFT_TAB 0x08
  537. #define MODE_LIT_ECHO 0x10
  538. #define MODE_MASK 0x1f
  539. /* Not part of protocol, but needed to simplify things... */
  540. #define MODE_FLOW 0x0100
  541. #define MODE_ECHO 0x0200
  542. #define MODE_INBIN 0x0400
  543. #define MODE_OUTBIN 0x0800
  544. #define MODE_FORCE 0x1000
  545. #define SLC_SYNCH 1
  546. #define SLC_BRK 2
  547. #define SLC_IP 3
  548. #define SLC_AO 4
  549. #define SLC_AYT 5
  550. #define SLC_EOR 6
  551. #define SLC_ABORT 7
  552. #define SLC_EOF 8
  553. #define SLC_SUSP 9
  554. #define SLC_EC 10
  555. #define SLC_EL 11
  556. #define SLC_EW 12
  557. #define SLC_RP 13
  558. #define SLC_LNEXT 14
  559. #define SLC_XON 15
  560. #define SLC_XOFF 16
  561. #define SLC_FORW1 17
  562. #define SLC_FORW2 18
  563. #define SLC_MCL         19
  564. #define SLC_MCR         20
  565. #define SLC_MCWL        21
  566. #define SLC_MCWR        22
  567. #define SLC_MCBOL       23
  568. #define SLC_MCEOL       24
  569. #define SLC_INSRT       25
  570. #define SLC_OVER        26
  571. #define SLC_ECR         27
  572. #define SLC_EWR         28
  573. #define SLC_EBOL        29
  574. #define SLC_EEOL        30
  575. #define NSLC 30
  576. /*
  577.  * For backwards compatability, we define SLC_NAMES to be the
  578.  * list of names if SLC_NAMES is not defined.
  579.  */
  580. #define SLC_NAMELIST "0", "SYNCH", "BRK", "IP", "AO", "AYT", "EOR", 
  581. "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", 
  582. "LNEXT", "XON", "XOFF", "FORW1", "FORW2", 
  583.                         "MCL", "MCR", "MCWL", "MCWR", "MCBOL", "MCEOL", 
  584.                         "INSRT", "OVER", "ECR", "EWR", "EBOL", "EEOL", 0
  585. #ifdef SLC_NAMES
  586. char *slc_names[] = {
  587. SLC_NAMELIST
  588. };
  589. #else
  590. extern char *slc_names[];
  591. #define SLC_NAMES SLC_NAMELIST
  592. #endif
  593. #define SLC_NAME_OK(x) ((unsigned int)(x) <= NSLC)
  594. #define SLC_NAME(x) (SLC_NAME_OK(x)?slc_names[x]:"UNKNOWN")
  595. #define SLC_NOSUPPORT 0
  596. #define SLC_CANTCHANGE 1
  597. #define SLC_VARIABLE 2
  598. #define SLC_DEFAULT 3
  599. #define SLC_LEVELBITS 0x03
  600. #define SLC_FUNC 0
  601. #define SLC_FLAGS 1
  602. #define SLC_VALUE 2
  603. #define SLC_ACK 0x80
  604. #define SLC_FLUSHIN 0x40
  605. #define SLC_FLUSHOUT 0x20
  606. #define OLD_ENV_VAR 1
  607. #define OLD_ENV_VALUE 0
  608. #define NEW_ENV_VAR 0
  609. #define NEW_ENV_VALUE 1
  610. #define ENV_ESC 2
  611. #define ENV_USERVAR 3
  612. #define FWDX_SCREEN     0
  613. #define FWDX_OPEN       1
  614. #define FWDX_CLOSE      2
  615. #define FWDX_DATA       3
  616. /*
  617.  * AUTHENTICATION suboptions
  618.  */
  619. /*
  620.  * Who is authenticating who ...
  621.  */
  622. #define AUTH_CLIENT_TO_SERVER 0 /* Client authenticating server */
  623. #define AUTH_SERVER_TO_CLIENT 1 /* Server authenticating client */
  624. #define AUTH_WHO_MASK 1
  625. /*
  626.  * amount of authentication done
  627.  */
  628. #define AUTH_HOW_ONE_WAY 0
  629. #define AUTH_HOW_MUTUAL 2
  630. #define AUTH_HOW_MASK 2
  631. /*
  632.  * should we be encrypting?
  633.  */
  634. #define AUTH_ENCRYPT_OFF      0
  635. #define AUTH_ENCRYPT_USING_TELOPT    4
  636. #define AUTH_ENCRYPT_AFTER_EXCHANGE 16
  637. #define AUTH_ENCRYPT_RESERVED       20
  638. #define AUTH_ENCRYPT_MASK     20
  639. /*
  640.  * will we be forwarding?
  641.  * if we want to activate the use of this flag then
  642.  *   #define USE_INI_CRED_FWD
  643.  */
  644. #define INI_CRED_FWD_OFF 0
  645. #define INI_CRED_FWD_ON 8
  646. #define INI_CRED_FWD_MASK 8
  647. #define USE_INI_CRED_FWD
  648. #define AUTHTYPE_NULL 0
  649. #define AUTHTYPE_KERBEROS_V4 1
  650. #define AUTHTYPE_KERBEROS_V5 2
  651. #define AUTHTYPE_SPX 3
  652. #define AUTHTYPE_MINK 4
  653. #define AUTHTYPE_SRP            5
  654. #define AUTHTYPE_RSA            6
  655. #define AUTHTYPE_SSL            7
  656. #define AUTHTYPE_LOKI          10
  657. #define AUTHTYPE_SSA           11
  658. #define AUTHTYPE_KEA_SJ        12
  659. #define AUTHTYPE_KEA_INTEG     13
  660. #define AUTHTYPE_DSS           14
  661. #define AUTHTYPE_NTLM          15
  662. #ifdef AUTHTYPE_CNT
  663. #undef AUTHTYPE_CNT
  664. #endif /* AUTHTYPE_CNT */
  665. #define AUTHTYPE_CNT        16
  666. /*
  667.  * AUTHTYPEs Last updated 21 March 1999
  668.  * from http://www.isi.edu/in-notes/iana/assignments/telnet-options
  669.  */
  670. #define AUTHTYPE_AUTO 99
  671. #ifdef AUTH_NAMES
  672. char *authtype_names[] = {
  673.     "NULL",                     /* RFC 1416 */
  674.     "KERBEROS_V4",              /* RFC 1416 */
  675.     "KERBEROS_V5",              /* RFC 1416 */
  676.     "SPX",                      /* RFC 1416 */
  677.     "MINK",                     /* Unknown */
  678.     "SRP",                      /* Wu */
  679.     "RSA",                      /* RFC 1416 */
  680.     "SSL",                      /* Hudson */
  681.     "IANA_8",                   /* not assigned by IANA */
  682.     "IANA_9",                   /* not assigned by IANA */
  683.     "LOKI",                     /* RFC 1416 */
  684.     "SSA",                      /* Schoch */
  685.     "KEA_SJ",                   /* Horting */
  686.     "KEA_SJ_INTEG",             /* Horting */
  687.     "DSS",                      /* Horting */
  688.     "NTLM",                     /* Kahn <louisk@microsoft.com> */
  689.     0
  690. };
  691. char * authmode_names[] = {
  692.     "CLIENT_TO_SERVER|ONE_WAY",
  693.     "SERVER_TO_CLIENT|ONE_WAY",
  694.     "CLIENT_TO_SERVER|MUTUAL",
  695.     "SERVER_TO_CLIENT|MUTUAL",
  696.     "CLIENT_TO_SERVER|ONE_WAY|ENCRYPT_USING_TELOPT",
  697.     "SERVER_TO_CLIENT|ONE_WAY|ENCRYPT_USING_TELOPT",
  698.     "CLIENT_TO_SERVER|MUTUAL|ENCRYPT_USING_TELOPT",
  699.     "SERVER_TO_CLIENT|MUTUAL|ENCRYPT_USING_TELOPT",
  700.     "CLIENT_TO_SERVER|ONE_WAY|CRED_FWD",
  701.     "SERVER_TO_CLIENT|ONE_WAY|CRED_FWD",
  702.     "CLIENT_TO_SERVER|MUTUAL|CRED_FWD",
  703.     "SERVER_TO_CLIENT|MUTUAL|CRED_FWD",
  704.     "CLIENT_TO_SERVER|ONE_WAY|ENCRYPT_USING_TELOPT|CRED_FWD",
  705.     "SERVER_TO_CLIENT|ONE_WAY|ENCRYPT_USING_TELOPT|CRED_FWD",
  706.     "CLIENT_TO_SERVER|MUTUAL|ENCRYPT_USING_TELOPT|CRED_FWD",
  707.     "SERVER_TO_CLIENT|MUTUAL|ENCRYPT_USING_TELOPT|CRED_FWD",
  708.     "CLIENT_TO_SERVER|ONE_WAY|ENCRYPT_AFTER_EXCHANGE",
  709.     "SERVER_TO_CLIENT|ONE_WAY|ENCRYPT_AFTER_EXCHANGE",
  710.     "CLIENT_TO_SERVER|MUTUAL|ENCRYPT_AFTER_EXCHANGE",
  711.     "SERVER_TO_CLIENT|MUTUAL|ENCRYPT_AFTER_EXCHANGE",
  712.     "CLIENT_TO_SERVER|ONE_WAY|ENCRYPT_RESERVED",
  713.     "SERVER_TO_CLIENT|ONE_WAY|ENCRYPT_RESERVED",
  714.     "CLIENT_TO_SERVER|MUTUAL|ENCRYPT_RESERVED",
  715.     "SERVER_TO_CLIENT|MUTUAL|ENCRYPT_RESERVED",
  716.     "CLIENT_TO_SERVER|ONE_WAY|ENCRYPT_AFTER_EXCHANGE|CRED_FWD",
  717.     "SERVER_TO_CLIENT|ONE_WAY|ENCRYPT_AFTER_EXCHANGE|CRED_FWD",
  718.     "CLIENT_TO_SERVER|MUTUAL|ENCRYPT_AFTER_EXCHANGE|CRED_FWD",
  719.     "SERVER_TO_CLIENT|MUTUAL|ENCRYPT_AFTER_EXCHANGE|CRED_FWD",
  720.     "CLIENT_TO_SERVER|ONE_WAY|ENCRYPT_RESERVED|CRED_FWD",
  721.     "SERVER_TO_CLIENT|ONE_WAY|ENCRYPT_RESERVED|CRED_FWD",
  722.     "CLIENT_TO_SERVER|MUTUAL|ENCRYPT_RESERVED|CRED_FWD",
  723.     "SERVER_TO_CLIENT|MUTUAL|ENCRYPT_RESERVED|CRED_FWD",
  724.     0
  725. };
  726. #else
  727. extern char *authtype_names[];
  728. extern char *authmode_names[];
  729. #endif
  730. #define AUTHMODE_CNT  32
  731. #define AUTHTYPE_NAME_OK(x) ((unsigned int)(x) < AUTHTYPE_CNT)
  732. #define AUTHTYPE_NAME(x)      (AUTHTYPE_NAME_OK(x)?authtype_names[x]:"UNKNOWN")
  733. #define AUTHMODE_NAME_OK(x) ((unsigned int)(x) < AUTHMODE_CNT)
  734. #define AUTHMODE_NAME(x)      (AUTHMODE_NAME_OK(x)?authmode_names[x]:"UNKNOWN")
  735. /* Kerberos Authentication Message Identifiers */
  736. #define KRB_AUTH 0 /* Authentication data follows */
  737. #define KRB_REJECT 1 /* Rejected (reason might follow) */
  738. #define KRB_ACCEPT 2 /* Accepted */
  739. #define KRB4_CHALLENGE 3
  740. #define KRB4_RESPONSE 4
  741. #define KRB5_RESPONSE 3 /* Response for mutual auth. */
  742. #define KRB5_FORWARD            4       /* Forwarded credentials follow */
  743. #define KRB5_FORWARD_ACCEPT     5       /* Forwarded credentials accepted */
  744. #define KRB5_FORWARD_REJECT     6       /* Forwarded credentials rejected */
  745. /* Secure Remote Password Authentication Message Identifiers */
  746. #define SRP_AUTH 0 /* Authentication data follows */
  747. #define SRP_REJECT 1 /* Rejected (reason might follow) */
  748. #define SRP_ACCEPT 2 /* Accepted */
  749. #define SRP_CHALLENGE 3
  750. #define SRP_RESPONSE 4
  751. #define SRP_EXP                 8       /* */
  752. #define SRP_PARAMS              9       /* */
  753. /* Telnet Auth using KEA and SKIPJACK */
  754. #define KEA_CERTA_RA              1
  755. #define KEA_CERTB_RB_IVB_NONCEB   2
  756. #define KEA_IVA_RESPONSEB_NONCEA  3
  757. #define KEA_RESPONSEA             4
  758. /* Tim Hudson's SSL Authentication Message Identifiers */
  759. #define SSL_START     1
  760. #define SSL_ACCEPT    2
  761. #define SSL_REJECT    3
  762. /* Microsoft NTLM Authentication Message Identifiers */
  763. #define NTLM_AUTH   0
  764. #define NTLM_CHALLENGE 1
  765. #define NTLM_RESPONSE  2
  766. #define NTLM_ACCEPT 3
  767. #define NTLM_REJECT 4
  768. /* Generic Constants */
  769. #define AUTH_SUCCESS    0
  770. #define AUTH_FAILURE    255
  771. /*
  772.  * ENCRYPTion suboptions
  773.  */
  774. #define ENCRYPT_IS 0 /* I pick encryption type ... */
  775. #define ENCRYPT_SUPPORT 1 /* I support encryption types ... */
  776. #define ENCRYPT_REPLY 2 /* Initial setup response */
  777. #define ENCRYPT_START 3 /* Am starting to send encrypted */
  778. #define ENCRYPT_END 4 /* Am ending encrypted */
  779. #define ENCRYPT_REQSTART 5 /* Request you start encrypting */
  780. #define ENCRYPT_REQEND 6 /* Request you send encrypting */
  781. #define ENCRYPT_ENC_KEYID 7
  782. #define ENCRYPT_DEC_KEYID 8
  783. #define ENCRYPT_CNT 9
  784. #define ENCTYPE_ANY 0
  785. #define ENCTYPE_DES_CFB64 1
  786. #define ENCTYPE_DES_OFB64 2
  787. #define ENCTYPE_DES3_CFB64      3
  788. #define ENCTYPE_DES3_OFB64      4
  789. #define ENCTYPE_CAST5_40_CFB64  8
  790. #define ENCTYPE_CAST5_40_OFB64  9
  791. #define ENCTYPE_CAST128_CFB64   10
  792. #define ENCTYPE_CAST128_OFB64   11
  793. #ifdef ENCTYPE_CNT
  794. #undef ENCTYPE_CNT
  795. #endif
  796. #define ENCTYPE_CNT             12
  797. #ifdef ENCRYPT_NAMES
  798. char *encrypt_names[] = {
  799. "IS", "SUPPORT", "REPLY", "START", "END",
  800. "REQUEST-START", "REQUEST-END", "ENC-KEYID", "DEC-KEYID",
  801. 0
  802. };
  803. char *enctype_names[] = {
  804.     "ANY",
  805.     "DES_CFB64",                /* Ts'o */
  806.     "DES_OFB64",                /* Ts'o */
  807.     "DES3_CFB64",               /* Altman */
  808.     "DES3_OFB64",               /* Altman */
  809.     "UNKNOWN-5",
  810.     "UNKNOWN-6",
  811.     "UNKNOWN-7",
  812.     "CAST5_40_CFB64",           /* Wu */
  813.     "CAST5_40_OFB64",           /* Wu */
  814.     "CAST128_CFB64",            /* Wu */
  815.     "CAST128_OFB64",            /* Wu */
  816.     0
  817. };
  818. #else
  819. extern char *encrypt_names[];
  820. extern char *enctype_names[];
  821. #endif
  822. #define ENCRYPT_NAME_OK(x) ((unsigned int)(x) < ENCRYPT_CNT)
  823. #define ENCRYPT_NAME(x) encrypt_names[x]
  824. #define ENCTYPE_NAME_OK(x) ((unsigned int)(x) < ENCTYPE_CNT)
  825. #define ENCTYPE_NAME(x) enctype_names[x]
  826. /* For setting the state of validUser */
  827. #define AUTH_REJECT     0       /* Rejected */
  828. #define AUTH_UNKNOWN    1       /* We don't know who he is, but he's okay */
  829. #define AUTH_OTHER      2       /* We know him, but not his name */
  830. #define AUTH_USER       3       /* We know he name */
  831. #define AUTH_VALID      4       /* We know him, and he needs no password */
  832. /* Kermit Option Subnegotiations */
  833. #define KERMIT_START      0
  834. #define KERMIT_STOP       1
  835. #define KERMIT_REQ_START  2
  836. #define KERMIT_REQ_STOP   3
  837. #define KERMIT_SOP        4
  838. #define KERMIT_RESP_START 8
  839. #define KERMIT_RESP_STOP  9
  840. /* For SET TELNET AUTH HOW  */
  841. #define TN_AUTH_HOW_ANY     0
  842. #define TN_AUTH_HOW_ONE_WAY 1
  843. #define TN_AUTH_HOW_MUTUAL  2
  844. /* For SET TELNET AUTH ENCRYPT */
  845. #define TN_AUTH_ENC_ANY     0
  846. #define TN_AUTH_ENC_NONE    1
  847. #define TN_AUTH_ENC_TELOPT  2
  848. #define TN_AUTH_ENC_EXCH    3  /* not used in Kermit */
  849. /* Telnet protocol functions defined in C-Kermit */
  850. _PROTOTYP( int tn_ini, (void) ); /* Telnet protocol support */
  851. _PROTOTYP( int tn_reset, (void));
  852. _PROTOTYP( int tn_set_modes, (void));
  853. _PROTOTYP( int tn_sopt, (int, int) );
  854. _PROTOTYP( int tn_doop, (CHAR, int, int (*)(int) ) );
  855. _PROTOTYP( int tn_sttyp, (void) );
  856. _PROTOTYP( int tn_snenv, (CHAR *, int) ) ;
  857. _PROTOTYP( int tn_rnenv, (CHAR *, int) ) ;
  858. _PROTOTYP( int tn_wait, (char *) ) ;
  859. _PROTOTYP( int tn_push, (void) ) ;
  860. _PROTOTYP( int tnsndbrk, (void) );
  861. _PROTOTYP( VOID tn_debug, (char *));
  862. #ifdef IKS_OPTION
  863. _PROTOTYP( int tn_siks, (int) );
  864. _PROTOTYP( int iks_wait, (int, int) );
  865. #endif /* IKS_OPTION */
  866. #ifdef CK_NAWS
  867. _PROTOTYP( int tn_snaws, (void) );
  868. #endif /* CK_NAWS */
  869. #ifdef CK_XDISPLOC
  870. _PROTOTYP( int tn_sxdisploc, (void) );
  871. #endif /* CK_XDISPLOC */
  872. #ifdef CK_SNDLOC
  873. _PROTOTYP( int tn_sndloc, (void) );
  874. #endif /* CK_SNDLOC */
  875. #ifdef CK_FORWARD_X
  876. _PROTOTYP( int fwdx_create_listen_socket,(int));
  877. _PROTOTYP( int fwdx_open_client_channel,(int));
  878. _PROTOTYP( int fwdx_open_server_channel,(VOID));
  879. _PROTOTYP( int fwdx_close_channel,(int));
  880. _PROTOTYP( int fwdx_write_data_to_channel,(int, char *,int));
  881. _PROTOTYP( int fwdx_send_data_from_channel,(int, char *,int));
  882. _PROTOTYP( int fwdx_close_all,(VOID));
  883. _PROTOTYP( int fwdx_tn_sb,(unsigned char *, int));
  884. _PROTOTYP( int tn_sndfwdx, (void));
  885. _PROTOTYP( int fwdx_send_close,(int));
  886. _PROTOTYP( int fwdx_send_open,(int));
  887. _PROTOTYP( VOID fwdx_check_sockets,(fd_set *));
  888. _PROTOTYP( int fwdx_init_fd_set,(fd_set *));
  889. #ifdef NT
  890. _PROTOTYP( VOID fwdx_thread,(VOID *));
  891. #endif /* NT */
  892. #endif /* CK_FORWARD_X */
  893. #ifndef CKCTEL_C /* These are declared in ckctel.c */
  894. extern int tn_init;                     /* Telnet protocol initialized flag */
  895. extern char *tn_term; /* Terminal type override */
  896. extern int sstelnet;                    /* Server side telnet? */
  897. extern int tn_deb; /* Telnet option debugging flag */
  898. #endif /* CKCTEL_C */
  899. #endif /* CKCTEL_H */