]> git.meshlink.io Git - catta/blob - avahi-core/publish.h
* split off lookup.h and publish.h from core.h
[catta] / avahi-core / publish.h
1 #ifndef foopublishhfoo
2 #define foopublishhfoo
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 /** \file publish.h Functions for publising local services and RRs */
26
27 /** \example core-publish-service.c Example how to register a DNS-SD
28  * service using an embedded mDNS stack. It behaves like a network
29  * printer registering both an IPP and a BSD LPR service. */
30
31
32 #include <avahi-common/cdecl.h>
33
34 #ifndef DOXYGEN_SHOULD_SKIP_THIS
35 AVAHI_C_DECL_BEGIN
36 #endif
37
38 /** A group of locally registered DNS RRs */
39 typedef struct AvahiSEntryGroup AvahiSEntryGroup;
40
41 #ifndef DOXYGEN_SHOULD_SKIP_THIS
42 AVAHI_C_DECL_END
43 #endif
44
45 #include "core.h"
46
47 #ifndef DOXYGEN_SHOULD_SKIP_THIS
48 AVAHI_C_DECL_BEGIN
49 #endif
50
51 /** Prototype for callback functions which are called whenever the state of an AvahiSEntryGroup object changes */
52 typedef void (*AvahiSEntryGroupCallback) (AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void* userdata);
53
54 /** Iterate through all local entries of the server. (when g is NULL)
55  * or of a specified entry group. At the first call state should point
56  * to a NULL initialized void pointer, That pointer is used to track
57  * the current iteration. It is not safe to call any other
58  * avahi_server_xxx() function during the iteration. If the last entry
59  * has been read, NULL is returned. */
60 const AvahiRecord *avahi_server_iterate(AvahiServer *s, AvahiSEntryGroup *g, void **state);
61
62 /** Create a new entry group. The specified callback function is
63  * called whenever the state of the group changes. Use entry group
64  * objects to keep track of you RRs. Add new RRs to a group using
65  * avahi_server_add_xxx(). Make sure to call avahi_s_entry_group_commit()
66  * to start the registration process for your RRs */
67 AvahiSEntryGroup *avahi_s_entry_group_new(AvahiServer *s, AvahiSEntryGroupCallback callback, void* userdata);
68
69 /** Free an entry group. All RRs assigned to the group are removed from the server */
70 void avahi_s_entry_group_free(AvahiSEntryGroup *g);
71
72 /** Commit an entry group. This starts the probing and registration process for all RRs in the group */
73 int avahi_s_entry_group_commit(AvahiSEntryGroup *g);
74
75 /** Remove all entries from the entry group and reset the state to AVAHI_ENTRY_GROUP_UNCOMMITED. */
76 void avahi_s_entry_group_reset(AvahiSEntryGroup *g);
77
78 /** Return 1 if the entry group is empty, i.e. has no records attached. */
79 int avahi_s_entry_group_is_empty(AvahiSEntryGroup *g);
80
81 /** Return the current state of the specified entry group */
82 AvahiEntryGroupState avahi_s_entry_group_get_state(AvahiSEntryGroup *g);
83
84 /** Change the opaque user data pointer attached to an entry group object */
85 void avahi_s_entry_group_set_data(AvahiSEntryGroup *g, void* userdata);
86
87 /** Return the opaque user data pointer currently set for the entry group object */
88 void* avahi_s_entry_group_get_data(AvahiSEntryGroup *g);
89
90 /** Add a new resource record to the server. Returns 0 on success, negative otherwise. */
91 int avahi_server_add(
92     AvahiServer *s,           /**< The server object to add this record to */
93     AvahiSEntryGroup *g,       /**< An entry group object if this new record shall be attached to one, or NULL. If you plan to remove the record sometime later you a required to pass an entry group object here. */
94     AvahiIfIndex interface,   /**< A numeric index of a network interface to attach this record to, or AVAHI_IF_UNSPEC to attach this record to all interfaces */
95     AvahiProtocol protocol,   /**< A protocol family to attach this record to. One of the AVAHI_PROTO_xxx constants. Use AVAHI_PROTO_UNSPEC to make this record available on all protocols (wich means on both IPv4 and IPv6). */
96     AvahiEntryFlags flags,    /**< Special flags for this record */
97     AvahiRecord *r            /**< The record to add. This function increases the reference counter of this object. */   );
98
99 /** Add a PTR RR to the server. See avahi_server_add() for more information. */
100 int avahi_server_add_ptr(
101     AvahiServer *s,
102     AvahiSEntryGroup *g,
103     AvahiIfIndex interface,
104     AvahiProtocol protocol,
105     AvahiEntryFlags flags,
106     uint32_t ttl,             /**< DNS TTL for this record */
107     const char *name,       /**< PTR record name */
108     const char *dest        /**< pointer destination */  );
109
110 /** Add a PTR RR to the server. See avahi_server_add() for more information. */
111 int avahi_server_add_txt(
112     AvahiServer *s,
113     AvahiSEntryGroup *g,
114     AvahiIfIndex interface,
115     AvahiProtocol protocol,
116     AvahiEntryFlags flags,
117     uint32_t ttl,             /**< DNS TTL for this record */
118     const char *name,       /**< TXT record name */
119     ... /**< Text record data, terminated by NULL */) AVAHI_GCC_SENTINEL;
120
121 /** Add a PTR RR to the server. Mostly identical to
122  * avahi_server_add_text but takes a va_list instead of a variable
123  * number of arguments */
124 int avahi_server_add_txt_va(
125     AvahiServer *s,
126     AvahiSEntryGroup *g,
127     AvahiIfIndex interface,
128     AvahiProtocol protocol,
129     AvahiEntryFlags flags,
130     uint32_t ttl,
131     const char *name,
132     va_list va);
133
134 /** Add a PTR RR to the server. Mostly identical to 
135  * avahi_server_add_text but takes an AvahiStringList record instead of a variable
136  * number of arguments. */
137 int avahi_server_add_txt_strlst(
138     AvahiServer *s,
139     AvahiSEntryGroup *g,
140     AvahiIfIndex interface,
141     AvahiProtocol protocol,
142     AvahiEntryFlags flags,
143     uint32_t ttl,
144     const char *name,
145     AvahiStringList *strlst  /**< TXT decord data as a AvahiString. This routine makes a deep copy of this object. */ );
146
147 /** Add an IP address mapping to the server. This will add both the
148  * host-name-to-address and the reverse mapping to the server. See
149  * avahi_server_add() for more information. If adding one of the RRs
150  * fails, the function returns with an error, but it is not defined if
151  * the other RR is deleted from the server or not. Therefore, you have
152  * to free the AvahiSEntryGroup and create a new one before
153  * proceeding. */
154 int avahi_server_add_address(
155     AvahiServer *s,
156     AvahiSEntryGroup *g,
157     AvahiIfIndex interface,
158     AvahiProtocol protocol,
159     AvahiEntryFlags flags,
160     const char *name,
161     AvahiAddress *a);
162
163 /** Add an DNS-SD service to the Server. This will add all required
164  * RRs to the server. See avahi_server_add() for more information.  If
165  * adding one of the RRs fails, the function returns with an error,
166  * but it is not defined if the other RR is deleted from the server or
167  * not. Therefore, you have to free the AvahiSEntryGroup and create a
168  * new one before proceeding. */
169 int avahi_server_add_service(
170     AvahiServer *s,
171     AvahiSEntryGroup *g,
172     AvahiIfIndex interface,
173     AvahiProtocol protocol,
174     const char *name,         /**< Service name, e.g. "Lennart's Files" */
175     const char *type,         /**< DNS-SD type, e.g. "_http._tcp" */
176     const char *domain,       
177     const char *host,         /**< Host name where this servcie resides, or NULL if on the local host */
178     uint16_t port,              /**< Port number of the service */
179     ...  /**< Text records, terminated by NULL */) AVAHI_GCC_SENTINEL;
180
181 /** Mostly identical to avahi_server_add_service(), but takes an va_list for the TXT records. */
182 int avahi_server_add_service_va(
183     AvahiServer *s,
184     AvahiSEntryGroup *g,
185     AvahiIfIndex interface,
186     AvahiProtocol protocol,
187     const char *name,
188     const char *type,
189     const char *domain,
190     const char *host,
191     uint16_t port,
192     va_list va);
193
194 /** Mostly identical to avahi_server_add_service(), but takes an AvahiStringList object for the TXT records.  The AvahiStringList object is copied. */
195 int avahi_server_add_service_strlst(
196     AvahiServer *s,
197     AvahiSEntryGroup *g,
198     AvahiIfIndex interface,
199     AvahiProtocol protocol,
200     const char *name,
201     const char *type,
202     const char *domain,
203     const char *host,
204     uint16_t port,
205     AvahiStringList *strlst);
206
207 /** The type of DNS server */
208 typedef enum {
209     AVAHI_DNS_SERVER_RESOLVE,         /**< Unicast DNS servers for normal resolves (_domain._udp)*/
210     AVAHI_DNS_SERVER_UPDATE           /**< Unicast DNS servers for updates (_dns-update._udp)*/
211 } AvahiDNSServerType;
212
213 /** Publish the specified unicast DNS server address via mDNS. You may
214  * browse for records create this way wit
215  * avahi_s_dns_server_browser_new(). */
216 int avahi_server_add_dns_server_address(
217     AvahiServer *s,
218     AvahiSEntryGroup *g,
219     AvahiIfIndex interface,
220     AvahiProtocol protocol,
221     const char *domain,
222     AvahiDNSServerType type,
223     const AvahiAddress *address,
224     uint16_t port /** should be 53 */);
225
226 /** Similar to avahi_server_add_dns_server_address(), but specify a
227 host name instead of an address. The specified host name should be
228 resolvable via mDNS */
229 int avahi_server_add_dns_server_name(
230     AvahiServer *s,
231     AvahiSEntryGroup *g,
232     AvahiIfIndex interface,
233     AvahiProtocol protocol,
234     const char *domain,
235     AvahiDNSServerType type,
236     const char *name,
237     uint16_t port /** should be 53 */);
238
239
240 #ifndef DOXYGEN_SHOULD_SKIP_THIS
241 AVAHI_C_DECL_END
242 #endif
243
244 #endif