utilities.c
上传用户:sddyfurun
上传日期:2007-01-04
资源大小:525k
文件大小:19k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1988, 1993
  3.  * The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  * This product includes software developed by the University of
  16.  * California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33. #ifdef SHOW_SCCIDS
  34. static char sccsid[] = "@(#)utilities.c 8.3 (Berkeley) 5/30/95";
  35. #endif
  36. #define TELOPTS
  37. #define TELCMDS
  38. #define SLC_NAMES
  39. #include <arpa/telnet.h>
  40. #include <sys/types.h>
  41. #include <sys/time.h>
  42. #include <ctype.h>
  43. #include "general.h"
  44. #include "ring.h"
  45. #include "defines.h"
  46. #include "externs.h"
  47. #include "fdset.h"
  48. FILE *NetTrace = 0; /* Not in bss, since needs to stay */
  49. int prettydump;
  50. /* upcase():  Upcase (in place) the argument.                                */
  51. void upcase(register char *argument) {
  52.     register int c;
  53.     while ((c = *argument) != 0) {
  54. if (islower(c)) {
  55.     *argument = toupper(c);
  56. }
  57. argument++;
  58.     }
  59. }
  60. /* SetSockOpt(): Compensate for differences in 4.2 and 4.3 systems.          */
  61. int SetSockOpt(int fd, int level, int option, int yesno) {
  62. #ifndef NOT43
  63.     return setsockopt(fd, level, option, (char *)&yesno, sizeof yesno);
  64. #else /* NOT43 */
  65.     if (yesno == 0) { /* Can't do that in 4.2! */
  66. fprintf(stderr, "Error: attempt to turn off an option 0x%x.n", option);
  67. return -1;
  68.     }
  69.     return setsockopt(fd, level, option, 0, 0);
  70. #endif /* NOT43 */
  71. }
  72. /*  * The following are routines used to print out debugging information.    */
  73. unsigned char NetTraceFile[256] = "(standard output)";
  74. void SetNetTrace(register char *file) {
  75.     if (NetTrace && NetTrace != stdout)
  76. fclose(NetTrace);
  77.     if (file  && (strcmp(file, "-") != 0)) {
  78. NetTrace = fopen(file, "w");
  79. if (NetTrace) {
  80.     strcpy((char *)NetTraceFile, file);
  81.     return;
  82. }
  83. fprintf(stderr, "Cannot open %s.n", file);
  84.     }
  85.     NetTrace = stdout;
  86.     strcpy((char *)NetTraceFile, "(standard output)");
  87. }
  88. void Dump(char direction, unsigned char *buffer, int length) {
  89. #   define BYTES_PER_LINE 32
  90. #   define min(x,y) ((x<y)? x:y)
  91.     unsigned char *pThis;
  92.     int offset;
  93.     offset = 0;
  94.     while (length) {
  95. /* print one line */
  96. fprintf(NetTrace, "%c 0x%xt", direction, offset);
  97. pThis = buffer;
  98. if (prettydump) {
  99.     buffer = buffer + min(length, BYTES_PER_LINE/2);
  100.     while (pThis < buffer) {
  101. fprintf(NetTrace, "%c%.2x",
  102.     (((*pThis)&0xff) == 0xff) ? '*' : ' ',
  103.     (*pThis)&0xff);
  104. pThis++;
  105.     }
  106.     length -= BYTES_PER_LINE/2;
  107.     offset += BYTES_PER_LINE/2;
  108. } else {
  109.     buffer = buffer + min(length, BYTES_PER_LINE);
  110.     while (pThis < buffer) {
  111. fprintf(NetTrace, "%.2x", (*pThis)&0xff);
  112. pThis++;
  113.     }
  114.     length -= BYTES_PER_LINE;
  115.     offset += BYTES_PER_LINE;
  116. }
  117. if (NetTrace == stdout) {
  118.     fprintf(NetTrace, "rn");
  119. } else {
  120.     fprintf(NetTrace, "n");
  121. }
  122. if (length < 0) {
  123.     fflush(NetTrace);
  124.     return;
  125. }
  126. /* find next unique line */
  127.     }
  128.     fflush(NetTrace);
  129. }
  130. void printoption(char *direction, int cmd, int option) {
  131.     if (!showoptions) return;
  132.     if (cmd == IAC) {
  133. if (TELCMD_OK(option))
  134.     fprintf(NetTrace, "%s IAC %s", direction, TELCMD(option));
  135. else
  136.     fprintf(NetTrace, "%s IAC %d", direction, option);
  137.     } else {
  138. register char *fmt;
  139. fmt = (cmd == WILL) ? "WILL" : (cmd == WONT) ? "WONT" :
  140.     (cmd == DO) ? "DO" : (cmd == DONT) ? "DONT" : 0;
  141. if (fmt) {
  142.     fprintf(NetTrace, "%s %s ", direction, fmt);
  143.     if (TELOPT_OK(option))
  144. fprintf(NetTrace, "%s", TELOPT(option));
  145.     else if (option == TELOPT_EXOPL)
  146. fprintf(NetTrace, "EXOPL");
  147.     else
  148. fprintf(NetTrace, "%d", option);
  149. } else
  150.     fprintf(NetTrace, "%s %d %d", direction, cmd, option);
  151.     }
  152.     if (NetTrace == stdout) {
  153. fprintf(NetTrace, "rn");
  154. fflush(NetTrace);
  155.     } else {
  156. fprintf(NetTrace, "n");
  157.     }
  158.     return;
  159. }
  160. void optionstatus() {
  161.     register int i;
  162.     extern char will_wont_resp[], do_dont_resp[];
  163.     for (i = 0; i < 256; i++) {
  164. if (do_dont_resp[i]) {
  165.     if (TELOPT_OK(i))
  166. printf("resp DO_DONT %s: %dn", TELOPT(i), do_dont_resp[i]);
  167.     else if (TELCMD_OK(i))
  168. printf("resp DO_DONT %s: %dn", TELCMD(i), do_dont_resp[i]);
  169.     else
  170. printf("resp DO_DONT %d: %dn", i,
  171. do_dont_resp[i]);
  172.     if (my_want_state_is_do(i)) {
  173. if (TELOPT_OK(i))
  174.     printf("want DO   %sn", TELOPT(i));
  175. else if (TELCMD_OK(i))
  176.     printf("want DO   %sn", TELCMD(i));
  177. else
  178.     printf("want DO   %dn", i);
  179.     } else {
  180. if (TELOPT_OK(i))
  181.     printf("want DONT %sn", TELOPT(i));
  182. else if (TELCMD_OK(i))
  183.     printf("want DONT %sn", TELCMD(i));
  184. else
  185.     printf("want DONT %dn", i);
  186.     }
  187. } else {
  188.     if (my_state_is_do(i)) {
  189. if (TELOPT_OK(i))
  190.     printf("     DO   %sn", TELOPT(i));
  191. else if (TELCMD_OK(i))
  192.     printf("     DO   %sn", TELCMD(i));
  193. else
  194.     printf("     DO   %dn", i);
  195.     }
  196. }
  197. if (will_wont_resp[i]) {
  198.     if (TELOPT_OK(i))
  199. printf("resp WILL_WONT %s: %dn", TELOPT(i), will_wont_resp[i]);
  200.     else if (TELCMD_OK(i))
  201. printf("resp WILL_WONT %s: %dn", TELCMD(i), will_wont_resp[i]);
  202.     else
  203. printf("resp WILL_WONT %d: %dn",
  204. i, will_wont_resp[i]);
  205.     if (my_want_state_is_will(i)) {
  206. if (TELOPT_OK(i))
  207.     printf("want WILL %sn", TELOPT(i));
  208. else if (TELCMD_OK(i))
  209.     printf("want WILL %sn", TELCMD(i));
  210. else
  211.     printf("want WILL %dn", i);
  212.     } else {
  213. if (TELOPT_OK(i))
  214.     printf("want WONT %sn", TELOPT(i));
  215. else if (TELCMD_OK(i))
  216.     printf("want WONT %sn", TELCMD(i));
  217. else
  218.     printf("want WONT %dn", i);
  219.     }
  220. } else {
  221.     if (my_state_is_will(i)) {
  222. if (TELOPT_OK(i))
  223.     printf("     WILL %sn", TELOPT(i));
  224. else if (TELCMD_OK(i))
  225.     printf("     WILL %sn", TELCMD(i));
  226. else
  227.     printf("     WILL %dn", i);
  228.     }
  229. }
  230.     }
  231. }
  232. void printsub(char direction, unsigned char *pointer, int length) {
  233.     register int i;
  234.     extern int want_status_response;
  235.     if (showoptions || direction == 0 ||
  236. (want_status_response && (pointer[0] == TELOPT_STATUS))) {
  237. if (direction) {
  238.     fprintf(NetTrace, "%s IAC SB ",
  239. (direction == '<')? "RCVD":"SENT");
  240.     if (length >= 3) {
  241. register int j;
  242. i = pointer[length-2];
  243. j = pointer[length-1];
  244. if (i != IAC || j != SE) {
  245.     fprintf(NetTrace, "(terminated by ");
  246.     if (TELOPT_OK(i))
  247. fprintf(NetTrace, "%s ", TELOPT(i));
  248.     else if (TELCMD_OK(i))
  249. fprintf(NetTrace, "%s ", TELCMD(i));
  250.     else
  251. fprintf(NetTrace, "%d ", i);
  252.     if (TELOPT_OK(j))
  253. fprintf(NetTrace, "%s", TELOPT(j));
  254.     else if (TELCMD_OK(j))
  255. fprintf(NetTrace, "%s", TELCMD(j));
  256.     else
  257. fprintf(NetTrace, "%d", j);
  258.     fprintf(NetTrace, ", not IAC SE!) ");
  259. }
  260.     }
  261.     length -= 2;
  262. }
  263. if (length < 1) {
  264.     fprintf(NetTrace, "(Empty suboption???)");
  265.     if (NetTrace == stdout)
  266. fflush(NetTrace);
  267.     return;
  268. }
  269. switch (pointer[0]) {
  270. case TELOPT_TTYPE:
  271.     fprintf(NetTrace, "TERMINAL-TYPE ");
  272.     switch (pointer[1]) {
  273.     case TELQUAL_IS:
  274. fprintf(NetTrace, "IS "%.*s"", length-2, (char *)pointer+2);
  275. break;
  276.     case TELQUAL_SEND:
  277. fprintf(NetTrace, "SEND");
  278. break;
  279.     default:
  280. fprintf(NetTrace,
  281. "- unknown qualifier %d (0x%x).",
  282. pointer[1], pointer[1]);
  283.     }
  284.     break;
  285. case TELOPT_TSPEED:
  286.     fprintf(NetTrace, "TERMINAL-SPEED");
  287.     if (length < 2) {
  288. fprintf(NetTrace, " (empty suboption???)");
  289. break;
  290.     }
  291.     switch (pointer[1]) {
  292.     case TELQUAL_IS:
  293. fprintf(NetTrace, " IS ");
  294. fprintf(NetTrace, "%.*s", length-2, (char *)pointer+2);
  295. break;
  296.     default:
  297. if (pointer[1] == 1)
  298.     fprintf(NetTrace, " SEND");
  299. else
  300.     fprintf(NetTrace, " %d (unknown)", pointer[1]);
  301. for (i = 2; i < length; i++)
  302.     fprintf(NetTrace, " ?%d?", pointer[i]);
  303. break;
  304.     }
  305.     break;
  306. case TELOPT_LFLOW:
  307.     fprintf(NetTrace, "TOGGLE-FLOW-CONTROL");
  308.     if (length < 2) {
  309. fprintf(NetTrace, " (empty suboption???)");
  310. break;
  311.     }
  312.     switch (pointer[1]) {
  313.     case LFLOW_OFF:
  314. fprintf(NetTrace, " OFF"); break;
  315.     case LFLOW_ON:
  316. fprintf(NetTrace, " ON"); break;
  317.     case LFLOW_RESTART_ANY:
  318. fprintf(NetTrace, " RESTART-ANY"); break;
  319.     case LFLOW_RESTART_XON:
  320. fprintf(NetTrace, " RESTART-XON"); break;
  321.     default:
  322. fprintf(NetTrace, " %d (unknown)", pointer[1]);
  323.     }
  324.     for (i = 2; i < length; i++)
  325. fprintf(NetTrace, " ?%d?", pointer[i]);
  326.     break;
  327. case TELOPT_NAWS:
  328.     fprintf(NetTrace, "NAWS");
  329.     if (length < 2) {
  330. fprintf(NetTrace, " (empty suboption???)");
  331. break;
  332.     }
  333.     if (length == 2) {
  334. fprintf(NetTrace, " ?%d?", pointer[1]);
  335. break;
  336.     }
  337.     fprintf(NetTrace, " %d %d (%d)",
  338. pointer[1], pointer[2],
  339. (int)((((unsigned int)pointer[1])<<8)|((unsigned int)pointer[2])));
  340.     if (length == 4) {
  341. fprintf(NetTrace, " ?%d?", pointer[3]);
  342. break;
  343.     }
  344.     fprintf(NetTrace, " %d %d (%d)",
  345. pointer[3], pointer[4],
  346. (int)((((unsigned int)pointer[3])<<8)|((unsigned int)pointer[4])));
  347.     for (i = 5; i < length; i++)
  348. fprintf(NetTrace, " ?%d?", pointer[i]);
  349.     break;
  350. case TELOPT_LINEMODE:
  351.     fprintf(NetTrace, "LINEMODE ");
  352.     if (length < 2) {
  353. fprintf(NetTrace, " (empty suboption???)");
  354. break;
  355.     }
  356.     switch (pointer[1]) {
  357.     case WILL:
  358. fprintf(NetTrace, "WILL ");
  359. goto common;
  360.     case WONT:
  361. fprintf(NetTrace, "WONT ");
  362. goto common;
  363.     case DO:
  364. fprintf(NetTrace, "DO ");
  365. goto common;
  366.     case DONT:
  367. fprintf(NetTrace, "DONT ");
  368.     common:
  369. if (length < 3) {
  370.     fprintf(NetTrace, "(no option???)");
  371.     break;
  372. }
  373. switch (pointer[2]) {
  374. case LM_FORWARDMASK:
  375.     fprintf(NetTrace, "Forward Mask");
  376.     for (i = 3; i < length; i++)
  377. fprintf(NetTrace, " %x", pointer[i]);
  378.     break;
  379. default:
  380.     fprintf(NetTrace, "%d (unknown)", pointer[2]);
  381.     for (i = 3; i < length; i++)
  382. fprintf(NetTrace, " %d", pointer[i]);
  383.     break;
  384. }
  385. break;
  386.     case LM_SLC:
  387. fprintf(NetTrace, "SLC");
  388. for (i = 2; i < length - 2; i += 3) {
  389.     if (SLC_NAME_OK(pointer[i+SLC_FUNC]))
  390. fprintf(NetTrace, " %s", SLC_NAME(pointer[i+SLC_FUNC]));
  391.     else
  392. fprintf(NetTrace, " %d", pointer[i+SLC_FUNC]);
  393.     switch (pointer[i+SLC_FLAGS]&SLC_LEVELBITS) {
  394.     case SLC_NOSUPPORT:
  395. fprintf(NetTrace, " NOSUPPORT"); break;
  396.     case SLC_CANTCHANGE:
  397. fprintf(NetTrace, " CANTCHANGE"); break;
  398.     case SLC_VARIABLE:
  399. fprintf(NetTrace, " VARIABLE"); break;
  400.     case SLC_DEFAULT:
  401. fprintf(NetTrace, " DEFAULT"); break;
  402.     }
  403.     fprintf(NetTrace, "%s%s%s",
  404. pointer[i+SLC_FLAGS]&SLC_ACK ? "|ACK" : "",
  405. pointer[i+SLC_FLAGS]&SLC_FLUSHIN ? "|FLUSHIN" : "",
  406. pointer[i+SLC_FLAGS]&SLC_FLUSHOUT ? "|FLUSHOUT" : "");
  407.     if (pointer[i+SLC_FLAGS]& ~(SLC_ACK|SLC_FLUSHIN|
  408. SLC_FLUSHOUT| SLC_LEVELBITS))
  409. fprintf(NetTrace, "(0x%x)", pointer[i+SLC_FLAGS]);
  410.     fprintf(NetTrace, " %d;", pointer[i+SLC_VALUE]);
  411.     if ((pointer[i+SLC_VALUE] == IAC) &&
  412. (pointer[i+SLC_VALUE+1] == IAC))
  413. i++;
  414. }
  415. for (; i < length; i++)
  416.     fprintf(NetTrace, " ?%d?", pointer[i]);
  417. break;
  418.     case LM_MODE:
  419. fprintf(NetTrace, "MODE ");
  420. if (length < 3) {
  421.     fprintf(NetTrace, "(no mode???)");
  422.     break;
  423. }
  424. {
  425.     char tbuf[64];
  426.     sprintf(tbuf, "%s%s%s%s%s",
  427. pointer[2]&MODE_EDIT ? "|EDIT" : "",
  428. pointer[2]&MODE_TRAPSIG ? "|TRAPSIG" : "",
  429. pointer[2]&MODE_SOFT_TAB ? "|SOFT_TAB" : "",
  430. pointer[2]&MODE_LIT_ECHO ? "|LIT_ECHO" : "",
  431. pointer[2]&MODE_ACK ? "|ACK" : "");
  432.     fprintf(NetTrace, "%s", tbuf[1] ? &tbuf[1] : "0");
  433. }
  434. if (pointer[2]&~(MODE_MASK))
  435.     fprintf(NetTrace, " (0x%x)", pointer[2]);
  436. for (i = 3; i < length; i++)
  437.     fprintf(NetTrace, " ?0x%x?", pointer[i]);
  438. break;
  439.     default:
  440. fprintf(NetTrace, "%d (unknown)", pointer[1]);
  441. for (i = 2; i < length; i++)
  442.     fprintf(NetTrace, " %d", pointer[i]);
  443.     }
  444.     break;
  445. case TELOPT_STATUS: {
  446.     register char *cp;
  447.     register int j, k;
  448.     fprintf(NetTrace, "STATUS");
  449.     switch (pointer[1]) {
  450.     default:
  451. if (pointer[1] == TELQUAL_SEND)
  452.     fprintf(NetTrace, " SEND");
  453. else
  454.     fprintf(NetTrace, " %d (unknown)", pointer[1]);
  455. for (i = 2; i < length; i++)
  456.     fprintf(NetTrace, " ?%d?", pointer[i]);
  457. break;
  458.     case TELQUAL_IS:
  459. if (--want_status_response < 0)
  460.     want_status_response = 0;
  461. if (NetTrace == stdout)
  462.     fprintf(NetTrace, " ISrn");
  463. else
  464.     fprintf(NetTrace, " ISn");
  465. for (i = 2; i < length; i++) {
  466.     switch(pointer[i]) {
  467.     case DO: cp = "DO"; goto common2;
  468.     case DONT: cp = "DONT"; goto common2;
  469.     case WILL: cp = "WILL"; goto common2;
  470.     case WONT: cp = "WONT"; goto common2;
  471.     common2:
  472. i++;
  473. if (TELOPT_OK((int)pointer[i]))
  474.     fprintf(NetTrace, " %s %s", cp, TELOPT(pointer[i]));
  475. else
  476.     fprintf(NetTrace, " %s %d", cp, pointer[i]);
  477. if (NetTrace == stdout)
  478.     fprintf(NetTrace, "rn");
  479. else
  480.     fprintf(NetTrace, "n");
  481. break;
  482.     case SB:
  483. fprintf(NetTrace, " SB ");
  484. i++;
  485. j = k = i;
  486. while (j < length) {
  487.     if (pointer[j] == SE) {
  488. if (j+1 == length)
  489.     break;
  490. if (pointer[j+1] == SE)
  491.     j++;
  492. else
  493.     break;
  494.     }
  495.     pointer[k++] = pointer[j++];
  496. }
  497. printsub(0, &pointer[i], k - i);
  498. if (i < length) {
  499.     fprintf(NetTrace, " SE");
  500.     i = j;
  501. } else
  502.     i = j - 1;
  503. if (NetTrace == stdout)
  504.     fprintf(NetTrace, "rn");
  505. else
  506.     fprintf(NetTrace, "n");
  507. break;
  508.     default:
  509. fprintf(NetTrace, " %d", pointer[i]);
  510. break;
  511.     }
  512. }
  513. break;
  514.     }
  515.     break;
  516.   }
  517. case TELOPT_XDISPLOC:
  518.     fprintf(NetTrace, "X-DISPLAY-LOCATION ");
  519.     switch (pointer[1]) {
  520.     case TELQUAL_IS:
  521. fprintf(NetTrace, "IS "%.*s"", length-2, (char *)pointer+2);
  522. break;
  523.     case TELQUAL_SEND:
  524. fprintf(NetTrace, "SEND");
  525. break;
  526.     default:
  527. fprintf(NetTrace, "- unknown qualifier %d (0x%x).",
  528. pointer[1], pointer[1]);
  529.     }
  530.     break;
  531. case TELOPT_NEW_ENVIRON:
  532.     fprintf(NetTrace, "NEW-ENVIRON ");
  533. #ifdef OLD_ENVIRON
  534.     goto env_common1;
  535. case TELOPT_OLD_ENVIRON:
  536.     fprintf(NetTrace, "OLD-ENVIRON");
  537. env_common1:
  538. #endif
  539.     switch (pointer[1]) {
  540.     case TELQUAL_IS:
  541. fprintf(NetTrace, "IS ");
  542. goto env_common;
  543.     case TELQUAL_SEND:
  544. fprintf(NetTrace, "SEND ");
  545. goto env_common;
  546.     case TELQUAL_INFO:
  547. fprintf(NetTrace, "INFO ");
  548.     env_common:
  549. {
  550.     register int noquote = 2;
  551. #if defined(ENV_HACK) && defined(OLD_ENVIRON)
  552.     extern int old_env_var, old_env_value;
  553. #endif
  554.     for (i = 2; i < length; i++ ) {
  555. switch (pointer[i]) {
  556. case NEW_ENV_VALUE:
  557. #ifdef OLD_ENVIRON
  558.      /* case NEW_ENV_OVAR: */
  559.     if (pointer[0] == TELOPT_OLD_ENVIRON) {
  560. # ifdef ENV_HACK
  561. if (old_env_var == OLD_ENV_VALUE)
  562.     fprintf(NetTrace, "" (VALUE) " + noquote);
  563. else
  564. # endif
  565.     fprintf(NetTrace, "" VAR " + noquote);
  566.     } else
  567. #endif /* OLD_ENVIRON */
  568. fprintf(NetTrace, "" VALUE " + noquote);
  569.     noquote = 2;
  570.     break;
  571. case NEW_ENV_VAR:
  572. #ifdef OLD_ENVIRON
  573.      /* case OLD_ENV_VALUE: */
  574.     if (pointer[0] == TELOPT_OLD_ENVIRON) {
  575. # ifdef ENV_HACK
  576. if (old_env_value == OLD_ENV_VAR)
  577.     fprintf(NetTrace, "" (VAR) " + noquote);
  578. else
  579. # endif
  580.     fprintf(NetTrace, "" VALUE " + noquote);
  581.     } else
  582. #endif /* OLD_ENVIRON */
  583. fprintf(NetTrace, "" VAR " + noquote);
  584.     noquote = 2;
  585.     break;
  586. case ENV_ESC:
  587.     fprintf(NetTrace, "" ESC " + noquote);
  588.     noquote = 2;
  589.     break;
  590. case ENV_USERVAR:
  591.     fprintf(NetTrace, "" USERVAR " + noquote);
  592.     noquote = 2;
  593.     break;
  594. default:
  595.     if (isprint(pointer[i]) && pointer[i] != '"') {
  596. if (noquote) {
  597.     putc('"', NetTrace);
  598.     noquote = 0;
  599. }
  600. putc(pointer[i], NetTrace);
  601.     } else {
  602. fprintf(NetTrace, "" %03o " + noquote,
  603. pointer[i]);
  604. noquote = 2;
  605.     }
  606.     break;
  607. }
  608.     }
  609.     if (!noquote)
  610. putc('"', NetTrace);
  611.     break;
  612. }
  613.     }
  614.     break;
  615. default:
  616.     if (TELOPT_OK(pointer[0]))
  617. fprintf(NetTrace, "%s (unknown)", TELOPT(pointer[0]));
  618.     else
  619. fprintf(NetTrace, "%d (unknown)", pointer[0]);
  620.     for (i = 1; i < length; i++)
  621. fprintf(NetTrace, " %d", pointer[i]);
  622.     break;
  623. }
  624. if (direction) {
  625.     if (NetTrace == stdout)
  626. fprintf(NetTrace, "rn");
  627.     else
  628. fprintf(NetTrace, "n");
  629. }
  630. if (NetTrace == stdout)
  631.     fflush(NetTrace);
  632.     }
  633. }
  634. /* EmptyTerminal - called to make sure that the terminal buffer is empty.
  635.  * Note that we consider the buffer to run all the
  636.  * way to the kernel (thus the select).
  637.  */
  638. void EmptyTerminal() {
  639.     fd_set o;
  640.     FD_ZERO(&o);
  641.     if (TTYBYTES() == 0) {
  642. FD_SET(tout, &o);
  643. (void) select(tout+1, (fd_set *) 0, &o, (fd_set *) 0,
  644. (struct timeval *) 0); /* wait for TTLOWAT */
  645.     } else {
  646. while (TTYBYTES()) {
  647.     (void) ttyflush(0);
  648.     FD_SET(tout, &o);
  649.     (void) select(tout+1, (fd_set *) 0, &o, (fd_set *) 0,
  650. (struct timeval *) 0); /* wait for TTLOWAT */
  651. }
  652.     }
  653. }
  654. void SetForExit() {
  655.     setconnmode(0);
  656. #ifdef TN3270
  657.     if (In3270) {
  658. Finish3270();
  659.     }
  660. #else /* defined(TN3270) */
  661.     do {
  662. (void)telrcv(); /* Process any incoming data */
  663. EmptyTerminal();
  664.     } while (ring_full_count(&netiring)); /* While there is any */
  665. #endif /* defined(TN3270) */
  666.     setcommandmode();
  667.     fflush(stdout);
  668.     fflush(stderr);
  669. #ifdef TN3270
  670.     if (In3270) {
  671. StopScreen(1);
  672.     }
  673. #endif /* defined(TN3270) */
  674.     setconnmode(0);
  675.     EmptyTerminal(); /* Flush the path to the tty */
  676.     setcommandmode();
  677. }
  678. void Exit(int returnCode) {
  679.     SetForExit();
  680.     exit(returnCode);
  681. }
  682. void ExitString(char *string, int returnCode) {
  683.     SetForExit();
  684.     fwrite(string, 1, strlen(string), stderr);
  685.     exit(returnCode);
  686. }