Changeset 498 for trunk/src


Ignore:
Timestamp:
Dec 7, 2015, 7:15:00 PM (9 years ago)
Author:
katerina
Message:

Fix for ticket #395 (Port check fails for some UDP daemons).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_portcheck.c

    r481 r498  
    976976             
    977977            }
     978          else
     979            {
     980              if (portchk_debug)
     981                {
     982                  sh_ipvx_ntoa(ipbuf, sizeof(ipbuf), paddr);
     983                  fprintf(stderr, _("check port_udp: %5d/udp on %15s ERRNO %d\n"),
     984                          port, ipbuf, errno);
     985                }
     986            }
    978987        }
    979988    }
     
    14291438  int retval;
    14301439  int sock   = -1;
     1440#if 0
    14311441  int flag   = 1; /* non-zero to enable an option */
    1432 
     1442#endif
    14331443  struct sockaddr_in  addr4;
    14341444  struct sockaddr_in6 addr6;
     
    14751485          continue;
    14761486        }
     1487
     1488#if 0
    14771489      if ( setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
    14781490                      (void *) &flag, sizeof(flag)) < 0 )
     
    14891501          continue;
    14901502        }
     1503#endif
    14911504
    14921505      if (domain == AF_INET)
Note: See TracChangeset for help on using the changeset viewer.