diff options
Diffstat (limited to 'networking/telnet.c')
-rw-r--r-- | networking/telnet.c | 19 |
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 | ||
49 | enum { | 64 | enum { |