vote up 0 vote down star

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 ??

flag

50% 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 at 13:28
did you check every returned value and so? – Aif Nov 3 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 at 13:32
2  
stupid question - what does 'm/c' mean? – Chris AtLee Nov 3 at 13:50
@mouviciel: you mean getent ahosts <hostname> – Peter Cordes Dec 10 at 1:12
show 1 more comment

3 Answers

vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
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 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 at 10:23
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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