In my C++ linu application: how can I get from a DNS the IP reffering to a name?

Please attach code sample.

10x

link|improve this question

67% accept rate
getnameinfo(3) is the standard C entry point, it ought to work in C++ with the appropriate incantations. – sarnold Jan 24 '11 at 8:45
feedback

2 Answers

Use getaddrinfo(). Documentation and examples here and here.

link|improve this answer
feedback

With the function gethostbyname.

Please, search in google.

link|improve this answer
2  
DESCRIPTION The gethostbyname*() and gethostbyaddr*() functions are obsolete. Applications should use getaddrinfo(3) and getnameinfo(3) instead. – sarnold Jan 24 '11 at 8:47
@sanold, how to use getnameifo for this case? – gln Jan 24 '11 at 8:51
gethostbyname return only static IP – gln Jan 24 '11 at 8:51
The DNS system does not distinguish between static or not-static. – user562374 Jan 24 '11 at 11:56
feedback

Your Answer

 
or
required, but never shown

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