Changeset 904 in MondoRescue for trunk/mindi-busybox/networking/httpd.c


Ignore:
Timestamp:
Oct 25, 2006, 1:51:57 AM (17 years ago)
Author:
Bruno Cornec
Message:

merge -r890:902 $SVN_M/branches/stable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/mindi-busybox/networking/httpd.c

    r821 r904  
    864864  struct sockaddr_in lsocket;
    865865  int fd;
     866  int on = 1;
    866867
    867868  /* create the socket right now */
     
    874875  /* tell the OS it's OK to reuse a previous address even though */
    875876  /* it may still be in a close down state.  Allows bind to succeed. */
    876   int on = 1;
    877877#ifdef SO_REUSEPORT
    878878  setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *)&on, sizeof(on)) ;
Note: See TracChangeset for help on using the changeset viewer.