From af1ce5fe2245fba0045d2c0d70b58b700938bd2f Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 11 May 2005 23:01:38 +0000 Subject: * 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 --- avahi-core/avahi-test.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'avahi-core/avahi-test.c') 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; -- cgit