summaryrefslogtreecommitdiff
path: root/networking/telnet.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-07-08 08:49:40 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-07-08 08:49:40 +0200
commit14bd16ac56e81e4912341cb731dc54af0dbe9e6c (patch)
tree729afe775b6a0b5f15e67ad93909d539aaf0429e /networking/telnet.c
parentacff3733bae6a9928d0109d5e4f93c32e82969d8 (diff)
downloadbusybox-w32-14bd16ac56e81e4912341cb731dc54af0dbe9e6c.tar.gz
busybox-w32-14bd16ac56e81e4912341cb731dc54af0dbe9e6c.tar.bz2
busybox-w32-14bd16ac56e81e4912341cb731dc54af0dbe9e6c.zip
more tweak for bionic
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/telnet.c')
-rw-r--r--networking/telnet.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/networking/telnet.c b/networking/telnet.c
index 6dd0de53a..e8e51dce4 100644
--- a/networking/telnet.c
+++ b/networking/telnet.c
@@ -40,10 +40,25 @@
40#include <netinet/in.h> 40#include <netinet/in.h>
41#include "libbb.h" 41#include "libbb.h"
42 42
43#ifdef __BIONIC__
44/* should be in arpa/telnet.h */
45# define IAC 255 /* interpret as command: */
46# define DONT 254 /* you are not to use option */
47# define DO 253 /* please, you use option */
48# define WONT 252 /* I won't use option */
49# define WILL 251 /* I will use option */
50# define SB 250 /* interpret as subnegotiation */
51# define SE 240 /* end sub negotiation */
52# define TELOPT_ECHO 1 /* echo */
53# define TELOPT_SGA 3 /* suppress go ahead */
54# define TELOPT_TTYPE 24 /* terminal type */
55# define TELOPT_NAWS 31 /* window size */
56#endif
57
43#ifdef DOTRACE 58#ifdef DOTRACE
44#define TRACE(x, y) do { if (x) printf y; } while (0) 59# define TRACE(x, y) do { if (x) printf y; } while (0)
45#else 60#else
46#define TRACE(x, y) 61# define TRACE(x, y)
47#endif 62#endif
48 63
49enum { 64enum {