• 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 fooannouncehfoo
2 #define fooannouncehfoo
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 typedef struct AvahiAnnouncer AvahiAnnouncer;
27 #include <avahi-common/llist.h>
28 #include "iface.h"
29 #include "internal.h"
30 #include "timeeventq.h"
31 #include "publish.h"
33 typedef enum {
34 AVAHI_PROBING, /* probing phase */
35 AVAHI_WAITING, /* wait for other records in group */
36 AVAHI_ANNOUNCING, /* announcing phase */
37 AVAHI_ESTABLISHED /* we'e established */
38 } AvahiAnnouncerState;
40 struct AvahiAnnouncer {
41 AvahiServer *server;
42 AvahiInterface *interface;
43 AvahiEntry *entry;
45 AvahiTimeEvent *time_event;
47 AvahiAnnouncerState state;
48 unsigned n_iteration;
49 unsigned sec_delay;
51 AVAHI_LLIST_FIELDS(AvahiAnnouncer, by_interface);
52 AVAHI_LLIST_FIELDS(AvahiAnnouncer, by_entry);
55 void avahi_announce_interface(AvahiServer *s, AvahiInterface *i);
56 void avahi_announce_entry(AvahiServer *s, AvahiEntry *e);
57 void avahi_announce_group(AvahiServer *s, AvahiSEntryGroup *g);
59 void avahi_entry_return_to_initial_state(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
61 void avahi_s_entry_group_check_probed(AvahiSEntryGroup *g, int immediately);
63 int avahi_entry_is_registered(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
64 int avahi_entry_is_probing(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
66 void avahi_goodbye_interface(AvahiServer *s, AvahiInterface *i, int send_goodbye, int rem);
67 void avahi_goodbye_entry(AvahiServer *s, AvahiEntry *e, int send_goodbye, int rem);
69 void avahi_reannounce_entry(AvahiServer *s, AvahiEntry *e);
71 #endif