Commit b87df787 authored by David Reid's avatar David Reid
Browse files

Beos R5 and below don't have the sin_len member in sockaddr_in so don't

try and use it.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88157 13f79535-47bb-0310-9956-ffa450edef68
parent dae3e1f4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -650,7 +650,9 @@ int ap_mpm_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s)
    }

    /* now build the udp sockaddr_in structure... */
#ifdef BEOS_BONE
    udpsi.sin_len = sizeof(struct sockaddr_in);
#endif
    udpsi.sin_family = AF_INET;
    udpsi.sin_port = htons(7777);
    udpsi.sin_addr.s_addr = htonl(INADDR_LOOPBACK);