Reputation: 4092
I need to resolve an IP address from a hostname in iOS. I know this is trivial using NSHost, however NSHost resolution capability seems to only work on OSX.
Thanks in advance.
Upvotes: 4
Views: 7185
Reputation: 3562
Like this:
struct hostent *host_entry = gethostbyname("stackoverflow.com");
char *buff;
buff = inet_ntoa(*((struct in_addr *)host_entry->h_addr_list[0]));
buff variable now contain an ip address...
Upvotes: 14