X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=main.c;h=57251628af8d364e7fd32cdc2f39d4ebaec08454;hb=844f6b5a8213018c3d42b5ef924b61cf3eafcdbb;hp=d8c2065ab6e4e73db543045b60779c1371c9cbca;hpb=0781d5363fb6fd723a2316fc7558aef6439b2f71;p=catta diff --git a/main.c b/main.c index d8c2065..5725162 100644 --- a/main.c +++ b/main.c @@ -1,38 +1,73 @@ #include #include #include +#include #include "flx.h" -#include "server.h" -static gboolean timeout(gpointer data) { +static gboolean quit_timeout(gpointer data) { g_main_loop_quit(data); 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); +} + +static void entry_group_callback(flxServer *s, flxEntryGroup *g, flxEntryGroupState state, gpointer userdata) { + g_message("entry group state: %i", state); +} + int main(int argc, char *argv[]) { flxServer *flx; gchar *r; - flxKey *k; GMainLoop *loop = NULL; + flxSubscription *s; + flxKey *k; + flxEntryGroup *g; flx = flx_server_new(NULL); - flx_server_add_text(flx, 0, 0, AF_UNSPEC, FALSE, NULL, "hallo"); +/* g = flx_entry_group_new(flx, entry_group_callback, NULL); */ + +/* flx_server_add_text(flx, g, 0, AF_UNSPEC, FLX_ENTRY_UNIQUE, NULL, "hallo", NULL); */ +/* flx_server_add_service(flx, g, 0, AF_UNSPEC, "_http._tcp", "gurke", NULL, NULL, 80, "foo", NULL); */ + +/* flx_entry_group_commit(g); */ - 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); + flx_server_dump(flx, stdout); + + +/* 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(5000, timeout, loop); + /* g_timeout_add(1000*20, dump_timeout, flx); */ +/* g_timeout_add(1000*30, quit_timeout, loop); */ g_main_loop_run(loop); g_main_loop_unref(loop); - flx_server_dump(flx, stdout); - +/* flx_subscription_free(s); */ + /* flx_entry_group_free(g); */ flx_server_free(flx); return 0;