]> git.meshlink.io Git - catta/blobdiff - main.c
some work
[catta] / main.c
diff --git a/main.c b/main.c
index da4b338faa3edba752ff6630cd718c4010cca019..17655401d3be756e36e534736d786a8a51fc1946 100644 (file)
--- a/main.c
+++ b/main.c
@@ -3,6 +3,7 @@
 #include <arpa/inet.h>
 
 #include "flx.h"
+#include "server.h"
 
 static GMainLoop *loop = NULL;
 
@@ -16,18 +17,24 @@ int main(int argc, char *argv[]) {
     flxLocalAddrSource *l;
     flxAddress a;
     gchar *r;
+    flxQuery q;
 
     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, "localhost", &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, "ip6-localhost", &a);
+    flx_server_add_address(flx, 0, 0, AF_UNSPEC, "ip6-localhost", &a);
 
-    g_timeout_add(1000, timeout, NULL);
+    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);
+    
+    g_timeout_add(5000, timeout, NULL);
     
     loop = g_main_loop_new(NULL, FALSE);
     g_main_loop_run(loop);