svn commit: trunk/busybox/networking

landley at busybox.net landley at busybox.net
Thu Aug 3 17:49:16 UTC 2006


Author: landley
Date: 2006-08-03 10:49:15 -0700 (Thu, 03 Aug 2006)
New Revision: 15768

Log:
Attempt to fixup httpd.c to match svn 15767.


Modified:
   trunk/busybox/networking/httpd.c


Changeset:
Modified: trunk/busybox/networking/httpd.c
===================================================================
--- trunk/busybox/networking/httpd.c	2006-08-03 15:41:12 UTC (rev 15767)
+++ trunk/busybox/networking/httpd.c	2006-08-03 17:49:15 UTC (rev 15768)
@@ -89,19 +89,6 @@
 */
 
 
-#include <stdio.h>
-#include <ctype.h>         /* for isspace           */
-#include <string.h>
-#include <stdlib.h>        /* for malloc            */
-#include <time.h>
-#include <unistd.h>        /* for close             */
-#include <signal.h>
-#include <sys/types.h>
-#include <sys/socket.h>    /* for connect and socket*/
-#include <netinet/in.h>    /* for sockaddr_in       */
-#include <sys/stat.h>
-#include <sys/wait.h>
-#include <fcntl.h>         /* for open modes        */
 #include "busybox.h"
 
 
@@ -871,7 +858,7 @@
   lsocket.sin_family = AF_INET;
   lsocket.sin_addr.s_addr = INADDR_ANY;
   lsocket.sin_port = htons(config->port);
-  fd = bb_xsocket(AF_INET, SOCK_STREAM, 0);
+  fd = xsocket(AF_INET, SOCK_STREAM, 0);
   /* tell the OS it's OK to reuse a previous address even though */
   /* it may still be in a close down state.  Allows bind to succeed. */
 #ifdef SO_REUSEPORT
@@ -879,8 +866,8 @@
 #else
   setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)) ;
 #endif
-  bb_xbind(fd, (struct sockaddr *)&lsocket, sizeof(lsocket));
-  listen(fd, 9); /* bb_xlisten? */
+  xbind(fd, (struct sockaddr *)&lsocket, sizeof(lsocket));
+  xlisten(fd, 9);
   signal(SIGCHLD, SIG_IGN);   /* prevent zombie (defunct) processes */
   return fd;
 }
@@ -1994,7 +1981,7 @@
 #endif
 #endif
 
-  bb_xchdir(home_httpd);
+  xchdir(home_httpd);
 #ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
   server = openServer();
 # ifdef CONFIG_FEATURE_HTTPD_SETUID
@@ -2008,7 +1995,7 @@
    {
 	char *p = getenv("PATH");
 	if(p) {
-		p = bb_xstrdup(p);
+		p = xstrdup(p);
 	}
 	clearenv();
 	if(p)
@@ -2027,7 +2014,7 @@
 
 #ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
 # if !DEBUG
-  bb_xdaemon(1, 0);     /* don`t change curent directory */
+  xdaemon(1, 0);     /* don`t change curent directory */
 # endif
   return miniHttpd(server);
 #else




More information about the busybox-cvs mailing list