git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105392
13f79535-47bb-0310-9956-
ffa450edef68
int clen;
ap_listen_rec *lr;
struct fd_set listenfds;
- SOCKET listenmaxfd = INVALID_SOCKET;
#if APR_HAVE_IPV6
struct sockaddr_in6 sa_client;
#else
if (lr->sd != NULL) {
apr_os_sock_get(&nsd, lr->sd);
FD_SET(nsd, &listenfds);
- if (listenmaxfd == INVALID_SOCKET || nsd > listenmaxfd) {
- listenmaxfd = nsd;
- }
ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf,
"Child %d: Listening on port %d.", my_pid, lr->bind_addr->port);
}