summaryrefslogtreecommitdiffstats
path: root/src/mdns-test.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-12-05 17:36:46 +0000
committerLennart Poettering <lennart@poettering.net>2004-12-05 17:36:46 +0000
commit5a12f4f892685adcbbeecbdc406a297152d0dad1 (patch)
tree3a810b71fbe58e8a6b54b28e109821e00a957b41 /src/mdns-test.c
parentc73527585bb4634a5472d7223bfd00be6908c443 (diff)
rename some stuff
git-svn-id: file:///home/lennart/svn/public/nss-mdns/trunk@53 0ee8848e-81ea-0310-a63a-f631d1a40d77
Diffstat (limited to 'src/mdns-test.c')
-rw-r--r--src/mdns-test.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/mdns-test.c b/src/mdns-test.c
new file mode 100644
index 0000000..5681204
--- /dev/null
+++ b/src/mdns-test.c
@@ -0,0 +1,41 @@
+#include <arpa/inet.h>
+#include <stdio.h>
+#include <unistd.h>
+
+#include "query.h"
+
+static void ipv4_func(const ipv4_address_t *ipv4, void *userdata) {
+ fprintf(stderr, "IPV4: %s\n", inet_ntoa(*(struct in_addr*) &ipv4->address));
+}
+
+static void ipv6_func(const ipv6_address_t *ipv6, void *userdata) {
+}
+
+static void name_func(const char *name, void *userdata) {
+ fprintf(stderr, "NAME: %s\n", name);
+}
+
+int main(int argc, char *argv[]) {
+ int ret = 1, fd = -1;
+ ipv4_address_t ipv4;
+
+ if ((fd = mdns_open_socket()) < 0)
+ goto finish;
+
+/* if (mdns_query_name(fd, argc > 1 ? argv[1] : "ecstasy.local", &ipv4_func, &ipv6_func, NULL) < 0) */
+/* goto finish; */
+
+ ipv4.address = inet_addr(argc > 1 ? argv[1] : "192.168.100.1");
+
+ if (mdns_query_ipv4(fd, &ipv4, name_func, NULL) < 0)
+ goto finish;
+
+ ret = 0;
+
+finish:
+
+ if (fd >= 0)
+ close(fd);
+
+ return ret;
+}