Home | History | Annotate | Download | only in tests
      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 
     25 #include <avahi-common/address.h>
     26 #include <avahi-common/alternative.h>
     27 #include <avahi-common/cdecl.h>
     28 #include <avahi-common/dbus-watch-glue.h>
     29 #include <avahi-common/dbus.h>
     30 #include <avahi-common/defs.h>
     31 #include <avahi-common/domain.h>
     32 #include <avahi-common/error.h>
     33 #include <avahi-common/gccmacro.h>
     34 #include <avahi-common/llist.h>
     35 #include <avahi-common/malloc.h>
     36 #include <avahi-common/rlist.h>
     37 #include <avahi-common/simple-watch.h>
     38 #include <avahi-common/strlst.h>
     39 #include <avahi-common/timeval.h>
     40 #include <avahi-common/watch.h>
     41 #include <avahi-core/addr-util.h>
     42 #include <avahi-core/announce.h>
     43 #include <avahi-core/browse.h>
     44 #include <avahi-core/cache.h>
     45 #include <avahi-core/core.h>
     46 #include <avahi-core/dns-srv-rr.h>
     47 #include <avahi-core/dns.h>
     48 #include <avahi-core/domain-util.h>
     49 #include <avahi-core/fdutil.h>
     50 #include <avahi-core/hashmap.h>
     51 #include <avahi-core/iface-linux.h>
     52 #include <avahi-core/iface.h>
     53 #include <avahi-core/internal.h>
     54 #include <avahi-core/log.h>
     55 #include <avahi-core/lookup.h>
     56 #include <avahi-core/multicast-lookup.h>
     57 #include <avahi-core/netlink.h>
     58 #include <avahi-core/prioq.h>
     59 #include <avahi-core/probe-sched.h>
     60 #include <avahi-core/publish.h>
     61 #include <avahi-core/querier.h>
     62 #include <avahi-core/query-sched.h>
     63 #include <avahi-core/response-sched.h>
     64 #include <avahi-core/rr-util.h>
     65 #include <avahi-core/rr.h>
     66 #include <avahi-core/rrlist.h>
     67 #include <avahi-core/socket.h>
     68 #include <avahi-core/timeeventq.h>
     69 #include <avahi-core/util.h>
     70 #include <avahi-core/wide-area.h>
     71 #include <avahi-client/client.h>
     72 #include <avahi-client/internal.h>
     73 #include <avahi-client/lookup.h>
     74 #include <avahi-client/publish.h>
     75 #include <avahi-client/xdg-config.h>
     76 #include <avahi-glib/glib-malloc.h>
     77 #include <avahi-glib/glib-watch.h>
     78 
     79 int main(int argc, char*argv[]) {
     80     return 0;
     81 }
     82 
     83