X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;ds=sidebyside;f=main.c;h=139279c6808cf42da61bfe10245dcb8242ba5809;hb=4ccd2cdd5ae567dc2cb6c05ca5e5a9537a9dc1c4;hp=47f3cd76226df63b233a510a85e67d9b685e4f2a;hpb=ad1f9d3725a300f10eca071c6fe2f2c583f51436;p=catta diff --git a/main.c b/main.c index 47f3cd7..139279c 100644 --- a/main.c +++ b/main.c @@ -4,6 +4,7 @@ #include "flx.h" #include "server.h" +#include "subscribe.h" static gboolean quit_timeout(gpointer data) { g_main_loop_quit(data); @@ -14,7 +15,7 @@ static gboolean send_timeout(gpointer data) { flxServer *flx = data; flxKey *k; - /* k = flx_key_new("cocaine.local.", FLX_DNS_CLASS_IN, FLX_DNS_TYPE_A); */ +/* 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); */ @@ -31,26 +32,48 @@ static gboolean dump_timeout(gpointer data) { 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, FALSE, NULL, "hallo"); + 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*60, quit_timeout, loop); + g_timeout_add(1000*30, quit_timeout, loop); g_timeout_add(1000, send_timeout, flx); - g_timeout_add(1000*10, dump_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;