]> git.meshlink.io Git - catta/blob - avahi-core/announce.h
rename libavahi-core to avahi-core
[catta] / avahi-core / announce.h
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
25 #include <glib.h>
26
27 typedef struct _AvahiAnnouncement AvahiAnnouncement;
28
29 #include "llist.h"
30 #include "iface.h"
31 #include "server.h"
32 #include "timeeventq.h"
33
34 typedef enum {
35     AVAHI_PROBING,
36     AVAHI_WAITING,         /* wait for other records in group */
37     AVAHI_ANNOUNCING,
38     AVAHI_ESTABLISHED
39 } AvahiAnnouncementState;
40
41 struct _AvahiAnnouncement {
42     AvahiServer *server;
43     AvahiInterface *interface;
44     AvahiEntry *entry;
45
46     AvahiTimeEvent *time_event;
47
48     AvahiAnnouncementState state;
49     guint n_iteration;
50     guint sec_delay;
51
52     AVAHI_LLIST_FIELDS(AvahiAnnouncement, by_interface);
53     AVAHI_LLIST_FIELDS(AvahiAnnouncement, by_entry);
54 };
55
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);
59
60 void avahi_entry_group_check_probed(AvahiEntryGroup *g, gboolean immediately);
61
62 gboolean avahi_entry_registered(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
63 gboolean avahi_entry_registering(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
64
65 void avahi_goodbye_interface(AvahiServer *s, AvahiInterface *i, gboolean send);
66 void avahi_goodbye_entry(AvahiServer *s, AvahiEntry *e, gboolean send);
67
68 void avahi_goodbye_all(AvahiServer *s, gboolean send);
69
70 AvahiAnnouncement *avahi_get_announcement(AvahiServer *s, AvahiEntry *e, AvahiInterface *i);
71
72 #endif