summaryrefslogtreecommitdiffstats
path: root/main.c
blob: 139279c6808cf42da61bfe10245dcb8242ba5809 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

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

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

static gboolean send_timeout(gpointer data) {
    flxServer *flx = data;
    flxKey *k;

/*     k = flx_key_new("ecstasy.local.", FLX_DNS_CLASS_IN, FLX_DNS_TYPE_TXT); */
/*     flx_server_post_query(flx, 0, AF_UNSPEC, k); */
/*     flx_key_unref(k); */

/*     k = flx_key_new("ecstasy.local.", FLX_DNS_CLASS_IN, FLX_DNS_TYPE_A); */
/*     flx_server_post_query(flx, 0, AF_INET, k); */
/*     flx_key_unref(k); */

    return FALSE;
}

static gboolean dump_timeout(gpointer data) {
    flxServer *flx = data;
    flx_server_dump(flx, stdout);
    return TRUE;
}

static void subscription(flxSubscription *s, flxRecord *r, gint interface, guchar protocol, flxSubscriptionEvent event, gpointer userdata) {
    gchar *t;
    
    g_assert(s);
    g_assert(r);
    g_assert(interface > 0);
    g_assert(protocol != AF_UNSPEC);

    g_message("SUBSCRIPTION: record [%s] on %i.%i is %s", t = flx_record_to_string(r), interface, protocol,
              event == FLX_SUBSCRIPTION_NEW ? "new" : (event == FLX_SUBSCRIPTION_CHANGE ? "changed" : "removed"));

    g_free(t);
}


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

    flx = flx_server_new(NULL);

    flx_server_add_text(flx, 0, 0, AF_UNSPEC, FLX_SERVER_ENTRY_UNIQUE, NULL, "hallo", NULL);
    flx_server_add_service(flx, 0, 0, AF_UNSPEC, "_http._tcp", "gurke", NULL, NULL, 80, "foo", NULL);

/*     k = flx_key_new("ecstasy.local.", FLX_DNS_CLASS_IN, FLX_DNS_TYPE_ANY); */
/*     s = flx_subscription_new(flx, k, 0, AF_UNSPEC, subscription, NULL); */
/*     flx_key_unref(k); */

    loop = g_main_loop_new(NULL, FALSE);
    
    g_timeout_add(1000*30, quit_timeout, loop);
    g_timeout_add(1000, send_timeout, flx);
    g_timeout_add(1000*20, dump_timeout, flx);
    
    g_main_loop_run(loop);

    g_main_loop_unref(loop);

/*     flx_subscription_free(s); */
    flx_server_free(flx);
    
    return 0;
}