summaryrefslogtreecommitdiffstats
path: root/avahi-core/avahi-test.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-05-11 23:01:38 +0000
committerLennart Poettering <lennart@poettering.net>2005-05-11 23:01:38 +0000
commitaf1ce5fe2245fba0045d2c0d70b58b700938bd2f (patch)
tree550d2f16c32acffb10af3596ea0a51f5b9e2b63d /avahi-core/avahi-test.c
parent8d8c0255f0f0242a067b577747740bab1b1021ea (diff)
* add auxiliary records to packet
* reeimplement known answer suppression and add it for unicast packets * fix a valist bug when adding services to a server git-svn-id: file:///home/lennart/svn/public/avahi/trunk@68 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-core/avahi-test.c')
-rw-r--r--avahi-core/avahi-test.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/avahi-core/avahi-test.c b/avahi-core/avahi-test.c
index 474f141..ba9d7cd 100644
--- a/avahi-core/avahi-test.c
+++ b/avahi-core/avahi-test.c
@@ -69,12 +69,12 @@ int main(int argc, char *argv[]) {
avahi = avahi_server_new(NULL);
-/* g = avahi_entry_group_new(avahi, entry_group_callback, NULL); */
+ g = avahi_entry_group_new(avahi, entry_group_callback, NULL);
-/* avahi_server_add_text(avahi, g, 0, AF_UNSPEC, AVAHI_ENTRY_UNIQUE, NULL, "hallo", NULL); */
-/* avahi_server_add_service(avahi, g, 0, AF_UNSPEC, "_http._tcp", "gurke", NULL, NULL, 80, "foo", NULL); */
+ avahi_server_add_text(avahi, g, 0, AF_UNSPEC, AVAHI_ENTRY_UNIQUE, NULL, "hallo", NULL);
+ avahi_server_add_service(avahi, g, 0, AF_UNSPEC, "_http._tcp", "gurke", NULL, NULL, 80, "foo", NULL);
-/* avahi_entry_group_commit(g); */
+ avahi_entry_group_commit(g);
avahi_server_dump(avahi, stdout);
@@ -86,13 +86,13 @@ int main(int argc, char *argv[]) {
loop = g_main_loop_new(NULL, FALSE);
/* g_timeout_add(1000*20, dump_timeout, Avahi); */
-/* g_timeout_add(1000*30, quit_timeout, loop); */
+/* g_timeout_add(1000*30, quit_timeout, loop); */
g_main_loop_run(loop);
g_main_loop_unref(loop);
/* avahi_subscription_free(s); */
- /* avahi_entry_group_free(g); */
+ avahi_entry_group_free(g);
avahi_server_free(avahi);
return 0;