1 #ifndef fooannouncehfoo
2 #define fooannouncehfoo
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
27 typedef struct AvahiAnnouncement AvahiAnnouncement;
32 #include "timeeventq.h"
36 AVAHI_WAITING, /* wait for other records in group */
39 } AvahiAnnouncementState;
41 struct AvahiAnnouncement {
43 AvahiInterface *interface;
46 AvahiTimeEvent *time_event;
48 AvahiAnnouncementState state;
52 AVAHI_LLIST_FIELDS(AvahiAnnouncement, by_interface);
53 AVAHI_LLIST_FIELDS(AvahiAnnouncement, by_entry);
56 void avahi_announce_interface(AvahiServer *s, AvahiInterface *i);
57 void avahi_announce_entry(AvahiServer *s, AvahiEntry *e);
58 void avahi_announce_group(AvahiServer *s, AvahiEntryGroup *g);
60 void avahi_entry_return_to_initial_state(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
62 void avahi_entry_group_check_probed(AvahiEntryGroup *g, gboolean immediately);
64 gboolean avahi_entry_registered(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
65 gboolean avahi_entry_probing(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
67 void avahi_goodbye_interface(AvahiServer *s, AvahiInterface *i, gboolean send_goodbye);
68 void avahi_goodbye_entry(AvahiServer *s, AvahiEntry *e, gboolean send_goodbye);
70 void avahi_goodbye_all(AvahiServer *s, gboolean send_goodbye);
72 AvahiAnnouncement *avahi_get_announcement(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);