1 /***
2 This file is part of avahi.
3
4 avahi is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
8
9 avahi is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
12 Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with avahi; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17 USA.
18 ***/
19
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <stdlib.h>
25
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <netinet/in.h>
29 #include <arpa/inet.h>
30
31 #include <avahi-common/simple-watch.h>
32 #include <avahi-core/core.h>
33
main(AVAHI_GCC_UNUSED int argc,AVAHI_GCC_UNUSED char * argv[])34 int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char*argv[]) {
35 AvahiServer *server;
36 AvahiServerConfig config;
37 int error;
38 AvahiSimplePoll *simple_poll;
39
40 simple_poll = avahi_simple_poll_new();
41
42 avahi_server_config_init(&config);
43 config.publish_hinfo = 0;
44 config.publish_addresses = 0;
45 config.publish_workstation = 0;
46 config.publish_domain = 0;
47 config.use_ipv6 = 0;
48 config.enable_reflector = 1;
49
50 server = avahi_server_new(avahi_simple_poll_get(simple_poll), &config, NULL, NULL, &error);
51 avahi_server_config_free(&config);
52
53 for (;;)
54 if (avahi_simple_poll_iterate(simple_poll, -1) != 0)
55 break;
56
57 avahi_server_free(server);
58 avahi_simple_poll_free(simple_poll);
59
60 return 0;
61 }
62