The hostent tag has no wiki summary.
2
votes
5answers
480 views
Segmentation fault when looking up host name and IP address
I have the following piece of code for getting the hostname and IP address,
#include <stdlib.h>
#include <stdio.h>
#include <netdb.h> /* This is the header file needed for ...
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 ...