I'm using Delphi and need to get the current Windows DNS server IP address so I can do a lookup. What function should I call to find it? The only solution I have right now does an ipconfig/all to get it, which is horrible.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Found a nice one using the function GetNetworkParams().Seems to work quite good. You can find it here: http://www.swissdelphicenter.ch/torry/showcode.php?id=2452

link|improve this answer
This code worked nicely. Thank you. – mj2008 Sep 15 '08 at 11:02
you're welcome :) – DeeCee Sep 15 '08 at 12:24
feedback

Do you really need to know what is DNS server to do a lookup?

Here is a solution how to get a IP address using 2 functions: GetHostName and GetHostByName. I assume the GetHostByName function does the lookup you need for you, or am I wrong?

link|improve this answer
1  
I'm wanting to get the DNS server so I can do an MX lookup. The code you link to seems to show how to find your own IP? – mj2008 Sep 15 '08 at 10:57
Yes. I assumed you wanted just a name->IP lookup, so gave you the GetHostByName function :) – kender Sep 15 '08 at 13:39
feedback

See GetNetowrkParams method (Platform SDK: IP Helper)

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.