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.

link|improve this question
feedback

1 Answer

I think getaddrinfo() might work:

http://msdn.microsoft.com/en-us/library/windows/desktop/ms738520.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.