X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;ds=sidebyside;f=main.c;h=34135c53c7df3fab907b024c9033d67dfd373cad;hb=7dce450bdc23ea306a61e00f914481e29ebcb176;hp=b366eb5e293a54370579c51c9f49ef17935a4036;hpb=4ba1a4b0b4488e5058af67b789187735b529075e;p=catta diff --git a/main.c b/main.c index b366eb5..34135c5 100644 --- a/main.c +++ b/main.c @@ -1,40 +1,74 @@ #include #include #include +#include -#include "flx.h" -#include "server.h" +#include "Avahi.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) { + AvahiServer *Avahi = data; + avahi_server_dump(Avahi, stdout); + return TRUE; +} + +static void subscription(AvahiSubscription *s, AvahiRecord *r, gint interface, guchar protocol, AvahiSubscriptionEvent 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 = avahi_record_to_string(r), interface, protocol, + event == AVAHI_SUBSCRIPTION_NEW ? "new" : (event == AVAHI_SUBSCRIPTION_CHANGE ? "changed" : "removed")); + + g_free(t); +} + +static void entry_group_callback(AvahiServer *s, AvahiEntryGroup *g, AvahiEntryGroupState state, gpointer userdata) { + g_message("entry group state: %i", state); +} + int main(int argc, char *argv[]) { - flxServer *flx; + AvahiServer *Avahi; gchar *r; - flxKey *k; GMainLoop *loop = NULL; + AvahiSubscription *s; + AvahiKey *k; + AvahiEntryGroup *g; - flx = flx_server_new(NULL); + Avahi = avahi_server_new(NULL); - flx_server_add_text(flx, 0, 0, AF_UNSPEC, FALSE, NULL, "hallo"); +/* g = avahi_entry_group_new(Avahi, entry_group_callback, NULL); */ + +/* avahi_server_add_text(Avahi, g, 0, AF_UNSPEC, AVAHI_ENTRY_UNIQUE, NULL, "hallo", NULL); */ +/* avahi_server_add_service(Avahi, g, 0, AF_UNSPEC, "_http._tcp", "gurke", NULL, NULL, 80, "foo", NULL); */ + +/* avahi_entry_group_commit(g); */ + + avahi_server_dump(Avahi, stdout); + + +/* k = avahi_key_new("ecstasy.local.", AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_ANY); */ +/* s = avahi_subscription_new(Avahi, k, 0, AF_UNSPEC, subscription, NULL); */ +/* avahi_key_unref(k); */ loop = g_main_loop_new(NULL, FALSE); - g_timeout_add(1000, timeout, loop); + /* g_timeout_add(1000*20, dump_timeout, Avahi); */ +/* g_timeout_add(1000*30, quit_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); +/* avahi_subscription_free(s); */ + /* avahi_entry_group_free(g); */ + avahi_server_free(Avahi); return 0; }