Files
iftop/config/int_ghba_r.c
pdw 120a1b2c53 FreeBSD patch from Frederic Perrin <frederic.perrin@resel.fr> plus fix for
compile error in gethostbyaddr resolver.
Order of pcap.h vs bpf.h switched, to fix compilation on Mac OS X.
2011-10-02 21:41:47 +00:00

40 lines
1020 B
C

/*
* int_ghba_r.c:
* Test program to see whether gethostbyaddr_r takes 8 arguments and returns
* int.
*/
static const char rcsid[] = "$Id$";
#include <sys/socket.h>
#include <sys/types.h>
#include <errno.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <netinet/in.h>
int main(void) {
struct in_addr localhost;
struct hostent hostbuf, *hp;
char *buf;
int res, herr;
size_t buflen = 1024;
localhost.s_addr = htonl(INADDR_LOOPBACK);
buf = malloc(buflen);
while ((res = gethostbyaddr_r((char*)&localhost, sizeof localhost, AF_INET,
&hostbuf, buf, buflen, &hp, &herr))
== ERANGE)
buf = (char*)realloc(buf, buflen *= 2);
/* We assume that the loopback address can always be resolved if
* gethostbyaddr_r is actually working. */
if (res || hp == NULL) {
fprintf(stderr, "errno = %d, herr = %d, res = %d\n", errno, herr, res);
return -1;
} else
return 0;
}