]> git.meshlink.io Git - catta/blobdiff - main.c
add packet scheduler
[catta] / main.c
diff --git a/main.c b/main.c
index d7a0f2f080cf8e0ac731463c827da083bc97e947..94d78ac5701a2d309bb52b95c7e1fef1aca912b6 100644 (file)
--- a/main.c
+++ b/main.c
@@ -5,35 +5,45 @@
 #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;
+
+    flx_server_dump(flx, stdout);
+
+
+    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);
 
-static gboolean timeout(gpointer data) {
-    g_main_loop_quit(loop);
     return FALSE;
 }
 
 int main(int argc, char *argv[]) {
     flxServer *flx;
     gchar *r;
-    flxQuery q;
+    GMainLoop *loop = NULL;
 
     flx = flx_server_new(NULL);
 
-    flx_server_add_text(flx, 0, 0, AF_UNSPEC, NULL, "hallo");
-    
-    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);
+    flx_server_add_text(flx, 0, 0, AF_UNSPEC, FALSE, NULL, "hallo");
+
+    loop = g_main_loop_new(NULL, FALSE);
     
-    g_timeout_add(5000, timeout, NULL);
+    /*g_timeout_add(1000*5, quit_timeout, loop);*/
+    g_timeout_add(1000, send_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_server_free(flx);
+    
     return 0;
 }