diff options
Diffstat (limited to 'networking/telnet.c')
-rw-r--r-- | networking/telnet.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/networking/telnet.c b/networking/telnet.c index 5c8805265..9fc85050b 100644 --- a/networking/telnet.c +++ b/networking/telnet.c @@ -238,6 +238,18 @@ static void handle_net_output(int len) *dst = '\r'; /* Enter -> CR LF */ *++dst = '\n'; } +#if 0 +/* putty's "special commands" mode does this: */ +/* Korenix 3005 switch needs at least the backspace tweak */ + if (c == 0x08 || c == 0x7f) { /* ctrl+h || backspace */ + *dst = IAC; + *++dst = EC; + } + if (c == 0x03) { /* ctrl+c */ + *dst = IAC; + *++dst = IP; + } +#endif dst++; } if (dst - outbuf != 0) |