I wish to use "gethostbyname" in my Suse m/c but it is not returning any structure.

but on the other systems it is working fine what could be the issue with my m/c ??

link|improve this question

62% accept rate
Any code would be helpful, some debugging stuff (gdb), or simple print statements would help a lot this community to solve your problem. – bua Nov 3 '09 at 13:28
did you check every returned value and so? – Aif Nov 3 '09 at 13:31
What is the value of h_errno after the call? What does getent <hostname> give on shell command line? – mouviciel Nov 3 '09 at 13:32
3  
stupid question - what does 'm/c' mean? – Chris AtLee Nov 3 '09 at 13:50
@mouviciel: you mean getent ahosts <hostname> – Peter Cordes Dec 10 '09 at 1:12
show 1 more comment
feedback

3 Answers

Note that the new way of doing it is using getaddrinfo see beej guide

link|improve this answer
feedback

To gethostbyname to work an entry in /etc/hosts to be made ... :) I was missing that thanks for answers.

link|improve this answer
Needing an entry in your hosts file means your DNS server isn't working right. Are you sure that's not the real source of the problem? – Matthew Iselin Nov 5 '09 at 5:56
That is the source of problem I passing hostname but there was no entry in /etc/hosts so it was not able to resolve the IP . – Arpit Nov 6 '09 at 10:23
feedback

If “ping somehost” on the command line works for you, gethostbyname should work, too, when used correctly. Read manpage resolv.conf(5) for details on how to configure name resolution.

If you get ping working but your code still fails, please post an example.

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.