I would like to obtain IPv6 addresses of DNS servers in system.
This topic helped me very much with IPv4.
But GetNetworkParams() is not returning IPv6 servers, only IPv4. Is there any other way to do this?
EDIT: I found an answer here (skip the php errors on page). It uses GetAdaptersAddresses() and fills PIP_ADAPTER_ADDRESSES structure, that contains IP_ADAPTER_DNS_SERVER_ADDRESS structure. The you only need use getnameinfo() to convert IP to String.