1#ifndef fooannouncehfoo
2#define fooannouncehfoo
3
4/* $Id$ */
5
6/***
7  This file is part of avahi.
8
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.
13
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.
18
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.
23***/
24
25typedef struct AvahiAnnouncer AvahiAnnouncer;
26
27#include <avahi-common/llist.h>
28#include "iface.h"
29#include "internal.h"
30#include "timeeventq.h"
31#include "publish.h"
32
33typedef 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;
39
40struct AvahiAnnouncer {
41    AvahiServer *server;
42    AvahiInterface *interface;
43    AvahiEntry *entry;
44
45    AvahiTimeEvent *time_event;
46
47    AvahiAnnouncerState state;
48    unsigned n_iteration;
49    unsigned sec_delay;
50
51    AVAHI_LLIST_FIELDS(AvahiAnnouncer, by_interface);
52    AVAHI_LLIST_FIELDS(AvahiAnnouncer, by_entry);
53};
54
55void avahi_announce_interface(AvahiServer *s, AvahiInterface *i);
56void avahi_announce_entry(AvahiServer *s, AvahiEntry *e);
57void avahi_announce_group(AvahiServer *s, AvahiSEntryGroup *g);
58
59void avahi_entry_return_to_initial_state(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
60
61void avahi_s_entry_group_check_probed(AvahiSEntryGroup *g, int immediately);
62
63int avahi_entry_is_registered(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
64int avahi_entry_is_probing(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
65
66void avahi_goodbye_interface(AvahiServer *s, AvahiInterface *i, int send_goodbye, int rem);
67void avahi_goodbye_entry(AvahiServer *s, AvahiEntry *e, int send_goodbye, int rem);
68
69void avahi_reannounce_entry(AvahiServer *s, AvahiEntry *e);
70
71#endif
72