Move declaration to be compatible with older gcc's.

This commit is contained in:
"Robert P. J. Day" 2006-08-03 10:50:39 +00:00
parent cae61e7ca4
commit 581d4f36b3

View File

@ -863,6 +863,7 @@ static int openServer(void)
{ {
struct sockaddr_in lsocket; struct sockaddr_in lsocket;
int fd; int fd;
int on = 1;
/* create the socket right now */ /* create the socket right now */
/* inet_addr() returns a value that is already in network order */ /* 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); fd = bb_xsocket(AF_INET, SOCK_STREAM, 0);
/* tell the OS it's OK to reuse a previous address even though */ /* 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. */ /* it may still be in a close down state. Allows bind to succeed. */
int on = 1;
#ifdef SO_REUSEPORT #ifdef SO_REUSEPORT
setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *)&on, sizeof(on)) ; setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *)&on, sizeof(on)) ;
#else #else