blob: 12fc6d9d9e778522347875fbefde30256cd9eb4d (
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
43
44
45
46
47
48
49
|
#include <arpa/inet.h>
#include <sys/socket.h>
#include <assert.h>
#include <errno.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#if EMSCRIPTEN
#include <emscripten.h>
#endif
int sockfd;
void finish(int result) {
close(sockfd);
#if EMSCRIPTEN
REPORT_RESULT();
#endif
exit(result);
}
int main() {
char str[INET_ADDRSTRLEN];
struct in_addr addr;
const char *res;
int err;
// resolve the hostname ot an actual address
struct hostent *host = gethostbyname("slashdot.org");
// convert the raw address to a string
char **raw_addr_list = host->h_addr_list;
int *raw_addr = (int*)*raw_addr_list;
res = inet_ntop(host->h_addrtype, raw_addr, str, INET_ADDRSTRLEN);
assert(res);
// convert the string to an in_addr structure
err = inet_pton(AF_INET, str, &addr);
assert(err == 1);
// do a reverse lookup on the ip address
struct hostent *host1 = gethostbyaddr(&addr, sizeof(addr), host->h_addrtype);
assert(strstr(host1->h_name, "slashdot.org"));
return EXIT_SUCCESS;
}
|