]> git.meshlink.io Git - catta/blobdiff - main.c
* add announcing/goodbye
[catta] / main.c
diff --git a/main.c b/main.c
index 17655401d3be756e36e534736d786a8a51fc1946..47f3cd76226df63b233a510a85e67d9b685e4f2a 100644 (file)
--- a/main.c
+++ b/main.c
@@ -5,44 +5,53 @@
 #include "flx.h"
 #include "server.h"
 
-static GMainLoop *loop = NULL;
+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("cocaine.local.", FLX_DNS_CLASS_IN, FLX_DNS_TYPE_A); */
+/*     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); */
 
-static gboolean timeout(gpointer data) {
-    g_main_loop_quit(loop);
     return FALSE;
 }
 
+static gboolean dump_timeout(gpointer data) {
+    flxServer *flx = data;
+    flx_server_dump(flx, stdout);
+    return TRUE;
+}
+
 int main(int argc, char *argv[]) {
     flxServer *flx;
-    flxLocalAddrSource *l;
-    flxAddress a;
     gchar *r;
-    flxQuery q;
+    GMainLoop *loop = NULL;
 
     flx = flx_server_new(NULL);
 
-    l = flx_local_addr_source_new(flx);
+    flx_server_add_text(flx, 0, 0, AF_UNSPEC, FALSE, NULL, "hallo");
 
-    flx_address_parse("127.0.0.1", AF_INET, &a);
-    flx_server_add_address(flx, 0, 0, AF_UNSPEC, "localhost", &a);
-
-    flx_address_parse("::1", AF_INET6, &a);
-    flx_server_add_address(flx, 0, 0, AF_UNSPEC, "ip6-localhost", &a);
-
-    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);
+    loop = g_main_loop_new(NULL, FALSE);
     
-    g_timeout_add(5000, timeout, NULL);
+    g_timeout_add(1000*60, quit_timeout, loop);
+    g_timeout_add(1000, send_timeout, flx);
+    g_timeout_add(1000*10, dump_timeout, flx);
     
-    loop = g_main_loop_new(NULL, FALSE);
     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);
+    
     return 0;
 }