Loading crypto/bio/b_sock.c +4 −0 Original line number Diff line number Diff line Loading @@ -683,6 +683,7 @@ int BIO_get_accept_socket(char *host, int bind_mode) * note that commonly IPv6 wildchard socket can service * IPv4 connections just as well... */ memset(&hint,0,sizeof(hint)); hint.ai_flags = AI_PASSIVE; if (h) { if (strchr(h,':')) Loading @@ -695,8 +696,11 @@ int BIO_get_accept_socket(char *host, int bind_mode) #endif } else if (h[0]=='*' && h[1]=='\0') { hint.ai_family = AF_INET; h=NULL; } } if ((*p_getaddrinfo.f)(h,p,&hint,&res)) break; Loading Loading
crypto/bio/b_sock.c +4 −0 Original line number Diff line number Diff line Loading @@ -683,6 +683,7 @@ int BIO_get_accept_socket(char *host, int bind_mode) * note that commonly IPv6 wildchard socket can service * IPv4 connections just as well... */ memset(&hint,0,sizeof(hint)); hint.ai_flags = AI_PASSIVE; if (h) { if (strchr(h,':')) Loading @@ -695,8 +696,11 @@ int BIO_get_accept_socket(char *host, int bind_mode) #endif } else if (h[0]=='*' && h[1]=='\0') { hint.ai_family = AF_INET; h=NULL; } } if ((*p_getaddrinfo.f)(h,p,&hint,&res)) break; Loading