/src/libexec/telnetd/ |
termstat.c | 52 #ifdef LINEMODE 54 #endif /* LINEMODE */ 57 #ifdef LINEMODE 61 * This function handles all management of linemode. 63 * Linemode allows the client to do the local editing of data 64 * and send only complete lines to the server. Linemode state is 66 * external processing, then we can use linemode. Further, if we 67 * can use real linemode, then we can look at the edit control bits 70 * Linemode support uses the following state flags to keep track of 71 * current and desired linemode state [all...] |
global.c | 55 int linemode; /* linemode on/off */ variable in typeref:typename:int 56 #ifdef LINEMODE 57 int uselinemode; /* what linemode to use (on/off) */ 62 int lmodetype; /* Client support for linemode */ 64 #endif /* LINEMODE */
|
ext.h | 40 extern int linemode; /* linemode on/off */ 41 #ifdef LINEMODE 42 extern int uselinemode; /* what linemode to use (on/off) */ 47 extern int lmodetype; /* Client support for linemode */ 49 #endif /* LINEMODE */
|
state.c | 104 #ifdef LINEMODE 106 * If we are operating in linemode, 109 if (linemode && (ncc > 0) && ((c == '\n') || 260 * Handle RFC 10xx Telnet linemode option additions 433 #ifdef LINEMODE 481 #if defined(LINEMODE) && defined(KLUDGELINEMODE) 485 * support the kludge linemode stuff. If we 488 * determine kludge linemode support, process 493 * Handle the linemode kludge stuff. 495 * linemode at all, then we assume that thi [all...] |
telnetd.c | 141 #ifdef LINEMODE 270 #ifdef LINEMODE 274 #endif /* LINEMODE */ 277 #if defined(LINEMODE) && defined(KLUDGELINEMODE) 280 /* ignore -k option if built without kludge linemode */ 281 #endif /* defined(LINEMODE) && defined(KLUDGELINEMODE) */ 457 #if defined(LINEMODE) && defined(KLUDGELINEMODE) 460 #ifdef LINEMODE 773 #ifdef LINEMODE 775 /* Query the peer for linemode support by trying to negotiat [all...] |
/src/usr.bin/telnet/ |
terminal.c | 151 extern int linemode; 181 mode |= linemode;
|
telnet.c | 141 int linemode; variable in typeref:typename:int 535 linemode = 0; /* put us back to the default state */ 764 * Linemode 1103 if ((linemode&MODE_MASK&~MODE_ACK) == *cmd) 1107 linemode = *cmd&(MODE_MASK&~MODE_ACK); 1108 str_lm_mode[4] = linemode; 1124 * Handle special character suboption of LINEMODE.
|
commands.c | 896 { " ", "The following are for local editing in linemode", 0, 0 }, 1117 extern int linemode; 1120 printf("?Need to have LINEMODE option enabled first.\n"); 1126 c = (unsigned char)(linemode | bit); 1128 c = (unsigned char)(linemode & ~bit); 1155 { "character", "Disable LINEMODE option", docharmode, 1, 0 }, 1159 { "line", "Enable LINEMODE option", dolinemode, 1, 0 }, 1164 { "", "These require the LINEMODE option to be enabled", 0, 0, 0 }, 2011 printf("Operating with LINEMODE option\n"); 2018 printf("Operating in obsolete linemode\n") [all...] |