]> git.meshlink.io Git - catta/blobdiff - main.c
add infrastrtcur for creating and sending DNS packets
[catta] / main.c
diff --git a/main.c b/main.c
index 17655401d3be756e36e534736d786a8a51fc1946..b366eb5e293a54370579c51c9f49ef17935a4036 100644 (file)
--- a/main.c
+++ b/main.c
@@ -5,44 +5,36 @@
 #include "flx.h"
 #include "server.h"
 
-static GMainLoop *loop = NULL;
-
 static gboolean timeout(gpointer data) {
-    g_main_loop_quit(loop);
+    g_main_loop_quit(data);
     return FALSE;
 }
 
 int main(int argc, char *argv[]) {
     flxServer *flx;
-    flxLocalAddrSource *l;
-    flxAddress a;
     gchar *r;
-    flxQuery q;
+    flxKey *k;
+    GMainLoop *loop = NULL;
 
     flx = flx_server_new(NULL);
 
-    l = flx_local_addr_source_new(flx);
-
-    flx_address_parse("127.0.0.1", AF_INET, &a);
-    flx_server_add_address(flx, 0, 0, AF_UNSPEC, "localhost", &a);
+    flx_server_add_text(flx, 0, 0, AF_UNSPEC, FALSE, NULL, "hallo");
 
-    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, timeout, loop);
     
-    loop = g_main_loop_new(NULL, FALSE);
     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_local_addr_source_free(l);
     flx_server_free(flx);
+    
     return 0;
 }