]> git.meshlink.io Git - catta/blobdiff - main.c
Rename flx_* to avahi_*
[catta] / main.c
diff --git a/main.c b/main.c
index 17655401d3be756e36e534736d786a8a51fc1946..34135c53c7df3fab907b024c9033d67dfd373cad 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1,48 +1,74 @@
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
+#include <stdlib.h>
 
-#include "flx.h"
-#include "server.h"
+#include "Avahi.h"
 
-static GMainLoop *loop = NULL;
-
-static gboolean timeout(gpointer data) {
-    g_main_loop_quit(loop);
+static gboolean quit_timeout(gpointer data) {
+    g_main_loop_quit(data);
     return FALSE;
 }
 
-int main(int argc, char *argv[]) {
-    flxServer *flx;
-    flxLocalAddrSource *l;
-    flxAddress a;
-    gchar *r;
-    flxQuery q;
+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);
 
-    flx = flx_server_new(NULL);
+    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"));
 
-    l = flx_local_addr_source_new(flx);
+    g_free(t);
+}
 
-    flx_address_parse("127.0.0.1", AF_INET, &a);
-    flx_server_add_address(flx, 0, 0, AF_UNSPEC, "localhost", &a);
+static void entry_group_callback(AvahiServer *s, AvahiEntryGroup *g, AvahiEntryGroupState state, gpointer userdata) {
+    g_message("entry group state: %i", state);
+}
 
-    flx_address_parse("::1", AF_INET6, &a);
-    flx_server_add_address(flx, 0, 0, AF_UNSPEC, "ip6-localhost", &a);
+int main(int argc, char *argv[]) {
+    AvahiServer *Avahi;
+    gchar *r;
+    GMainLoop *loop = NULL;
+    AvahiSubscription *s;
+    AvahiKey *k;
+    AvahiEntryGroup *g;
 
-    q.name = "campari.local.";
-    q.class = FLX_DNS_CLASS_IN;
-    q.type = FLX_DNS_TYPE_A;
-    flx_server_post_query_job(flx, 0, AF_UNSPEC, NULL, &q);
+    Avahi = avahi_server_new(NULL);
+
+/*     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);  */
     
-    g_timeout_add(5000, timeout, 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*20, dump_timeout, Avahi); */
+/*     g_timeout_add(1000*30, quit_timeout, loop); */
+    
     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);
+/*     avahi_subscription_free(s); */
+    /* avahi_entry_group_free(g);  */
+    avahi_server_free(Avahi);
+    
     return 0;
 }