mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Using AF_INET6 when creating an IPv6 socket helps a lot!
This commit is contained in:
parent
1f94705de9
commit
fea89edbab
1 changed files with 1 additions and 1 deletions
|
|
@ -2606,7 +2606,7 @@ dns_resolver_create(dns_view_t *view,
|
|||
/*
|
||||
* Create an IPv6 UDP socket and a dispatcher for it.
|
||||
*/
|
||||
result = isc_socket_create(socketmgr, AF_INET,
|
||||
result = isc_socket_create(socketmgr, AF_INET6,
|
||||
isc_sockettype_udp,
|
||||
&res->udpsocket6);
|
||||
if (result != ISC_R_SUCCESS)
|
||||
|
|
|
|||
Loading…
Reference in a new issue