summaryrefslogtreecommitdiffstats
path: root/main.c
blob: b366eb5e293a54370579c51c9f49ef17935a4036 (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
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

#include "flx.h"
#include "server.h"

static gboolean timeout(gpointer data) {
    g_main_loop_quit(data);
    return FALSE;
}

int main(int argc, char *argv[]) {
    flxServer *flx;
    gchar *r;
    flxKey *k;
    GMainLoop *loop = NULL;

    flx = flx_server_new(NULL);

    flx_server_add_text(flx, 0, 0, AF_UNSPEC, FALSE, NULL, "hallo");

    loop = g_main_loop_new(NULL, FALSE);
    
    g_timeout_add(1000, timeout, loop);
    
    g_main_loop_run(loop);

    k = flx_key_new("cocaine.local.", FLX_DNS_CLASS_IN, FLX_DNS_TYPE_A);
    flx_server_send_query(flx, 0, AF_UNSPEC, k);
    flx_key_unref(k);

    g_main_loop_unref(loop);

    flx_server_dump(flx, stdout);

    flx_server_free(flx);
    
    return 0;
}