I'm newbie to BSD socket programming in C. I can query a web address to get its associated ip addresses with "getaddrinfo" function. But i want to know which dns server getaddrinfo queries this information from.
|
If you are on linux or a unix platform, try looking at With regard to wireshark knowing what's going on, it doesn't really know. It's just monitoring packets as they flow to and fro and printing out what it sees. The resolver is what knows, and that's the API I suggested. |
|||
|
|
I don't think you can find out which it used, but it uses one from /etc/resolv.conf |
|||
|
|
If you are on Linux, you can look at the source to 'dig'. Based on it's ability to print out the server address, I think there must be some means to do this other than just parsing the /etc/resolv.conf. On Windows, there is a very convoluted API for the purpose. |
|||
|