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
|
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "flx.h"
#include "server.h"
static GMainLoop *loop = NULL;
static gboolean timeout(gpointer data) {
g_main_loop_quit(loop);
return FALSE;
}
int main(int argc, char *argv[]) {
flxServer *flx;
flxLocalAddrSource *l;
flxAddress a;
gchar *r;
flxQuery q;
flx = flx_server_new(NULL);
l = flx_local_addr_source_new(flx);
flx_address_parse("127.0.0.1", AF_INET, &a);
flx_server_add_address(flx, 0, 0, AF_UNSPEC, "localhost", &a);
flx_address_parse("::1", AF_INET6, &a);
flx_server_add_address(flx, 0, 0, AF_UNSPEC, "ip6-localhost", &a);
q.name = "campari.local.";
q.class = FLX_DNS_CLASS_IN;
q.type = FLX_DNS_TYPE_A;
flx_server_post_query_job(flx, 0, AF_UNSPEC, NULL, &q);
g_timeout_add(5000, timeout, NULL);
loop = g_main_loop_new(NULL, FALSE);
g_main_loop_run(loop);
g_main_loop_unref(loop);
flx_server_dump(flx, stdout);
flx_local_addr_source_free(l);
flx_server_free(flx);
return 0;
}
|