]> git.meshlink.io Git - catta/blobdiff - main.c
fold local.c into iface.c
[catta] / main.c
diff --git a/main.c b/main.c
index 0dcfa706b87a7f476323a5a726dd6632972fa004..d7a0f2f080cf8e0ac731463c827da083bc97e947 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;
 
@@ -13,21 +14,19 @@ static gboolean timeout(gpointer data) {
 
 int main(int argc, char *argv[]) {
     flxServer *flx;
-    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, AF_UNSPEC, "localhost", &a);
-
-    flx_address_parse("::1", AF_INET6, &a);
-    flx_server_add_address(flx, 0, 0, AF_UNSPEC, "ip6-localhost", &a);
-
-    g_timeout_add(1000, timeout, 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);
+    
+    g_timeout_add(5000, timeout, NULL);
     
     loop = g_main_loop_new(NULL, FALSE);
     g_main_loop_run(loop);
@@ -35,7 +34,6 @@ int main(int argc, char *argv[]) {
 
     flx_server_dump(flx, stdout);
 
-    flx_local_addr_source_free(l);
     flx_server_free(flx);
     return 0;
 }