blob: 33729e0cc31d25c4aebd7f98a88289f87df7d776 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <stdio.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
if (argc != 2) {
fprintf(stderr, "Usage: %s <domain-name>\n", argv[0]);
exit(1);
}
struct hostent* he;
he = gethostbyname(argv[1]);
if (!he) {
fputs("Error, could not resolve.\n", stderr);
exit(1);
}
char str[INET_ADDRSTRLEN];
inet_ntop(AF_INET, he->h_addr, str, INET_ADDRSTRLEN);
printf("%s\n", str);
return 0;
}
|