Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable returning IPv4 mapped IPv6 address on getaddrinfo() #3690

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pjlib/src/pj/addr_resolv_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,9 @@ PJ_DEF(pj_status_t) pj_getaddrinfo(int af, const pj_str_t *nodename,
/* Call getaddrinfo() */
pj_bzero(&hint, sizeof(hint));
hint.ai_family = af;
if (af == PJ_AF_INET6) {
hint.ai_flags = AI_V4MAPPED | AI_ALL;
}
/* Zero value of ai_socktype means the implementation shall attempt
* to resolve the service name for all supported socket types */
hint.ai_socktype = 0;
Expand Down
Loading