blob: 5effffeb3c1de3a00ce7730983329fb76f19f4f1 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#include <errno.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <string.h>
int main()
{
struct addrinfo req;
void *ptr;
memset(&req, 0, sizeof(req));
struct addrinfo *res, *i;
int ret = 0;
char buf[NI_MAXHOST];
req.ai_family = AF_INET6;
req.ai_socktype = SOCK_DGRAM;
ret = getaddrinfo("google.com", NULL, &req, &res);
if (ret == 0) {
while (res) {
memset(buf, 0, NI_MAXHOST);
ptr = &((struct sockaddr_in6*)res->ai_addr)->sin6_addr;
inet_ntop(AF_INET6, ptr, buf, NI_MAXHOST);
printf("%s\n", buf);
res = res->ai_next;
}
} else {
printf("invalid %s\n", gai_strerror(ret));
}
}
|