• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-core/

Lines Matching defs:*

0 #ifndef foobrowsehfoo
2 #define foobrowsehfoo
4 /* $Id$ */
7 This file is part of avahi.
9 avahi is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as
11 published by the Free Software Foundation; either version 2.1 of the
12 License, or (at your option) any later version.
14 avahi is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
17 Public License for more details.
19 You should have received a copy of the GNU Lesser General Public
20 License along with avahi; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
25 #include <avahi-common/llist.h>
27 #include "core.h"
28 #include "timeeventq.h"
29 #include "internal.h"
30 #include "dns.h"
31 #include "lookup.h"
33 typedef struct AvahiSRBLookup AvahiSRBLookup;
35 struct AvahiSRecordBrowser {
36 AVAHI_LLIST_FIELDS(AvahiSRecordBrowser, browser);
37 int dead;
38 AvahiServer *server;
40 AvahiKey *key;
41 AvahiIfIndex interface;
42 AvahiProtocol protocol;
43 AvahiLookupFlags flags;
45 AvahiTimeEvent *defer_time_event;
47 AvahiSRecordBrowserCallback callback;
48 void* userdata;
50 /* Lookup data */
51 AVAHI_LLIST_HEAD(AvahiSRBLookup, lookups);
52 unsigned n_lookups;
54 AvahiSRBLookup *root_lookup;
57 void avahi_browser_cleanup(AvahiServer *server);
59 void avahi_s_record_browser_destroy(AvahiSRecordBrowser *b);
60 void avahi_s_record_browser_restart(AvahiSRecordBrowser *b);
62 #endif