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

#include "flx.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;
    guint32 ip;

    flx = flx_server_new(NULL);

    l = flx_local_addr_source_new(flx);
    
/*     ip = inet_addr("127.0.0.1"); */
/*     flx_server_add(flx, flx_server_get_next_id(flx), "foo.local", FLX_DNS_TYPE_A, &ip, sizeof(ip)); */

    g_timeout_add(1000, 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;
}