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
28 typedef struct _AvahiServer AvahiServer;
29 typedef struct _AvahiEntry AvahiEntry;
30 typedef struct _AvahiEntryGroup AvahiEntryGroup;
37 AVAHI_ENTRY_UNIQUE = 1,
38 AVAHI_ENTRY_NOPROBE = 2,
39 AVAHI_ENTRY_NOANNOUNCE = 4
43 AVAHI_ENTRY_GROUP_UNCOMMITED,
44 AVAHI_ENTRY_GROUP_REGISTERING,
45 AVAHI_ENTRY_GROUP_ESTABLISHED,
46 AVAHI_ENTRY_GROUP_COLLISION
47 } AvahiEntryGroupState;
49 typedef void (*AvahiEntryGroupCallback) (AvahiServer *s, AvahiEntryGroup *g, AvahiEntryGroupState state, gpointer userdata);
51 AvahiServer *avahi_server_new(GMainContext *c);
52 void avahi_server_free(AvahiServer* s);
54 const AvahiRecord *avahi_server_iterate(AvahiServer *s, AvahiEntryGroup *g, void **state);
55 void avahi_server_dump(AvahiServer *s, FILE *f);
57 AvahiEntryGroup *avahi_entry_group_new(AvahiServer *s, AvahiEntryGroupCallback callback, gpointer userdata);
58 void avahi_entry_group_free(AvahiEntryGroup *g);
59 void avahi_entry_group_commit(AvahiEntryGroup *g);
60 AvahiEntryGroupState avahi_entry_group_get_state(AvahiEntryGroup *g);
62 void avahi_server_add(
67 AvahiEntryFlags flags,
70 void avahi_server_add_ptr(
75 AvahiEntryFlags flags,
79 void avahi_server_add_address(
84 AvahiEntryFlags flags,
88 void avahi_server_add_text(
93 AvahiEntryFlags flags,
95 ... /* text records, terminated by NULL */);
97 void avahi_server_add_text_va(
102 AvahiEntryFlags flags,
106 void avahi_server_add_text_strlst(
111 AvahiEntryFlags flags,
113 AvahiStringList *strlst);
115 void avahi_server_add_service(
125 ... /* text records, terminated by NULL */);
127 void avahi_server_add_service_va(
139 void avahi_server_add_service_strlst(
149 AvahiStringList *strlst);
152 AVAHI_SUBSCRIPTION_NEW,
153 AVAHI_SUBSCRIPTION_REMOVE,
154 AVAHI_SUBSCRIPTION_CHANGE
155 } AvahiSubscriptionEvent;
157 typedef struct _AvahiSubscription AvahiSubscription;
159 typedef void (*AvahiSubscriptionCallback)(AvahiSubscription *s, AvahiRecord *record, gint interface, guchar protocol, AvahiSubscriptionEvent event, gpointer userdata);
161 AvahiSubscription *avahi_subscription_new(AvahiServer *s, AvahiKey *key, gint interface, guchar protocol, AvahiSubscriptionCallback callback, gpointer userdata);
162 void avahi_subscription_free(AvahiSubscription *s);