Make sure stdlib.h is always included before dmalloc.h to avoid problems
[oweals/busybox.git] / networking / telnetd.c
index 27b08aced65db0739207b6b4978009ccabf3c1a8..3d5e8d100c68dd0c77f944caecfd94658aa2bea4 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: telnetd.c,v 1.6 2003/04/25 12:32:37 andersen Exp $
+/* $Id: telnetd.c,v 1.9 2003/12/19 11:30:13 andersen Exp $
  *
  * Simple telnet server
  * Bjorn Wesen, Axis Communications AB (bjornw@axis.com)
 
 #define BUFSIZE 4000
 
-static const char *loginpath 
+static const char *loginpath 
 #ifdef CONFIG_LOGIN
-"/bin/login";
+ = "/bin/login";
 #else
-"/bin/sh";
+;
 #endif
 static const char *issuefile = "/etc/issue.net";
 
@@ -116,6 +116,8 @@ static struct tsession *sessions;
    FIXME - if we mean to send 0xFF to the terminal then it will be escaped,
    what is the escape character?  We aren't handling that situation here.
 
+   CR-LF ->'s CR mapping is also done here, for convenience
+
   */
 static char *
 remove_iacs(struct tsession *ts, int *pnum_totty) {
@@ -128,7 +130,14 @@ remove_iacs(struct tsession *ts, int *pnum_totty) {
 
        while (ptr < end) {
                if (*ptr != IAC) {
+                       int c = *ptr;
                        *totty++ = *ptr++;
+                       /* We now map \r\n ==> \r for pragmatic reasons.
+                        * Many client implementations send \r\n when
+                        * the user hits the CarriageReturn key.
+                        */
+                       if (c == '\r' && (*ptr == '\n' || *ptr == 0) && ptr < end)
+                               ptr++;
                }
                else {
                        if ((ptr+2) < end) {
@@ -365,6 +374,10 @@ telnetd_main(int argc, char **argv)
 #endif /* CONFIG_FEATURE_TELNETD_INETD */
        int maxlen, w, r;
 
+#ifndef CONFIG_LOGIN
+       loginpath = DEFAULT_SHELL;
+#endif
+
        for (;;) {
                c = getopt( argc, argv, options);
                if (c == EOF) break;