aboutsummaryrefslogtreecommitdiff
path: root/networking/telnet.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/telnet.c')
-rw-r--r--networking/telnet.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/networking/telnet.c b/networking/telnet.c
index c835c7a45..59268c6de 100644
--- a/networking/telnet.c
+++ b/networking/telnet.c
@@ -34,10 +34,6 @@
34#include <netinet/in.h> 34#include <netinet/in.h>
35#include "busybox.h" 35#include "busybox.h"
36 36
37#if 0
38enum { DOTRACE = 1 };
39#endif
40
41#ifdef DOTRACE 37#ifdef DOTRACE
42#include <arpa/inet.h> /* for inet_ntoa()... */ 38#include <arpa/inet.h> /* for inet_ntoa()... */
43#define TRACE(x, y) do { if (x) printf y; } while (0) 39#define TRACE(x, y) do { if (x) printf y; } while (0)
@@ -311,17 +307,6 @@ static void putiac2(byte wwdd, byte c)
311 putiac(c); 307 putiac(c);
312} 308}
313 309
314#if 0
315static void putiac1(byte c)
316{
317 if (G.iaclen + 2 > IACBUFSIZE)
318 iacflush();
319
320 putiac(IAC);
321 putiac(c);
322}
323#endif
324
325#ifdef CONFIG_FEATURE_TELNET_TTYPE 310#ifdef CONFIG_FEATURE_TELNET_TTYPE
326static void putiac_subopt(byte c, char *str) 311static void putiac_subopt(byte c, char *str)
327{ 312{