]> git.meshlink.io Git - catta/blob - tests/catta-reflector.c
Fix compilation error caused by ACX_THREAD
[catta] / tests / catta-reflector.c
1 /***
2   This file is part of catta.
3
4   catta 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   catta 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 catta; 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 <catta/simple-watch.h>
32 #include <catta/core.h>
33
34 int main(CATTA_GCC_UNUSED int argc, CATTA_GCC_UNUSED char*argv[]) {
35     CattaServer *server;
36     CattaServerConfig config;
37     int error;
38     CattaSimplePoll *simple_poll;
39
40     simple_poll = catta_simple_poll_new();
41
42     catta_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 = catta_server_new(catta_simple_poll_get(simple_poll), &config, NULL, NULL, &error);
51     catta_server_config_free(&config);
52
53     for (;;)
54         if (catta_simple_poll_iterate(simple_poll, -1) != 0)
55             break;
56
57     catta_server_free(server);
58     catta_simple_poll_free(simple_poll);
59
60     return 0;
61 }