Tagged Questions

4
votes
1answer
90 views

Odd String Issue in C

I am writing some code that uses the function gethostbyname(). This function requires that I pass it a string of the host I am trying to find the host for. Right now I have my string declared in an ...
3
votes
2answers
281 views

What's wrong with gethostbyname?

I am using this snippet of code I found in http://www.kutukupret.com/2009/09/28/gethostbyname-vs-getaddrinfo/ to perform dns lookups #include <stdio.h> #include <stdlib.h> #include ...
2
votes
3answers
3k views

gethostbyname in C

I don't know how to write applications in C, but I need a tiny program that does: lh = gethostbyname("localhost"); output = lh->h_name; output variable is to be printed. The above code is used ...
1
vote
2answers
369 views

Is gethostbyname guaranteed to return hostent structures with IPv4 addresses?

I cannot use getaddrinfo(...) for resolving hostnames and therefore must stick to gethostbyname(...) Is the gethostbyname(...) function guaranteed to return hostent structures that contain only IPv4 ...
0
votes
2answers
67 views

How to use gethostbyname in c

I'm trying to use the function gethostbyname, but my code: int handleTCP(char *hostname, char* portNo){ struct hostent *hp = gethostbyname(hostname); ... } Keeps returning: 21: warning: ...
0
votes
1answer
139 views

How can we cache the result of gethostbyname?

My proxy server is spending a lot of time resolving the domain names,is there a way to make gethostbyname cache the result?
0
votes
1answer
235 views

gethostbyname() and valgrind

I keep getting this error whenever I call gethostbyname() in my C code. ==7983== Invalid read of size 1 ==7983== at 0x412AB2C: ____strtoul_l_internal (strtol_l.c:298) ==7983== by 0x412A46F: ...
0
votes
3answers
559 views

gethostbyname problem

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