]> git.meshlink.io Git - catta/blob - tests/c-plus-plus-test.cc
update C++ tests, and compile them only when HAVE_NETLINK is set
[catta] / tests / c-plus-plus-test.cc
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
6   avahi is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as
8   published by the Free Software Foundation; either version 2.1 of the
9   License, or (at your option) any later version.
10  
11   avahi is distributed in the hope that it will be useful, but WITHOUT
12   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14   Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public
17   License along with avahi; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26
27 #include <avahi-common/address.h>
28 #include <avahi-common/alternative.h>
29 #include <avahi-common/cdecl.h>
30 #include <avahi-common/dbus-watch-glue.h>
31 #include <avahi-common/dbus.h>
32 #include <avahi-common/defs.h>
33 #include <avahi-common/domain.h>
34 #include <avahi-common/error.h>
35 #include <avahi-common/gccmacro.h>
36 #include <avahi-common/llist.h>
37 #include <avahi-common/malloc.h>
38 #include <avahi-common/rlist.h>
39 #include <avahi-common/simple-watch.h>
40 #include <avahi-common/strlst.h>
41 #include <avahi-common/timeval.h>
42 #include <avahi-common/watch.h>
43 #include <avahi-core/announce.h>
44 #include <avahi-core/browse.h>
45 #include <avahi-core/cache.h>
46 #include <avahi-core/core.h>
47 #include <avahi-core/dns.h>
48 #include <avahi-core/fdutil.h>
49 #include <avahi-core/hashmap.h>
50 #include <avahi-core/iface-linux.h>
51 #include <avahi-core/iface.h>
52 #include <avahi-core/log.h>
53 #include <avahi-core/lookup.h>
54 #include <avahi-core/multicast-lookup.h>
55 #include <avahi-core/netlink.h>
56 #include <avahi-core/prioq.h>
57 #include <avahi-core/probe-sched.h>
58 #include <avahi-core/publish.h>
59 #include <avahi-core/querier.h>
60 #include <avahi-core/query-sched.h>
61 #include <avahi-core/response-sched.h>
62 #include <avahi-core/rr.h>
63 #include <avahi-core/rrlist.h>
64 #include <avahi-core/server.h>
65 #include <avahi-core/socket.h>
66 #include <avahi-core/timeeventq.h>
67 #include <avahi-core/util.h>
68 #include <avahi-core/wide-area.h>
69 #include <avahi-client/client.h>
70 #include <avahi-client/internal.h>
71 #include <avahi-glib/glib-malloc.h>
72 #include <avahi-glib/glib-watch.h>
73
74 int main(int argc, char*argv[]) {
75     return 0;
76 }
77