projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cae61e7
)
Move declaration to be compatible with older gcc's.
author
"Robert P. J. Day"
<rpjday@mindspring.com>
Thu, 3 Aug 2006 10:50:39 +0000
(10:50 -0000)
committer
"Robert P. J. Day"
<rpjday@mindspring.com>
Thu, 3 Aug 2006 10:50:39 +0000
(10:50 -0000)
networking/httpd.c
patch
|
blob
|
history
diff --git
a/networking/httpd.c
b/networking/httpd.c
index 452b56d19669c39c071fec9e63d8b4d7177f31d7..64d88f1cdc2112938cf97eb5409b397f69bf05c1 100644
(file)
--- a/
networking/httpd.c
+++ b/
networking/httpd.c
@@
-863,6
+863,7
@@
static int openServer(void)
{
struct sockaddr_in lsocket;
int fd;
+ int on = 1;
/* create the socket right now */
/* inet_addr() returns a value that is already in network order */
@@
-873,7
+874,6
@@
static int openServer(void)
fd = bb_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. */
- int on = 1;
#ifdef SO_REUSEPORT
setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *)&on, sizeof(on)) ;
#else