]> git.saurik.com Git - apple/mdnsresponder.git/blob - mDNSShared/dns_sd.h
mDNSResponder-258.21.tar.gz
[apple/mdnsresponder.git] / mDNSShared / dns_sd.h
1 /* -*- Mode: C; tab-width: 4 -*-
2 *
3 * Copyright (c) 2003-2004, Apple Computer, Inc. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of its
14 * contributors may be used to endorse or promote products derived from this
15 * software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29
30 /*! @header DNS Service Discovery
31 *
32 * @discussion This section describes the functions, callbacks, and data structures
33 * that make up the DNS Service Discovery API.
34 *
35 * The DNS Service Discovery API is part of Bonjour, Apple's implementation
36 * of zero-configuration networking (ZEROCONF).
37 *
38 * Bonjour allows you to register a network service, such as a
39 * printer or file server, so that it can be found by name or browsed
40 * for by service type and domain. Using Bonjour, applications can
41 * discover what services are available on the network, along with
42 * all the information -- such as name, IP address, and port --
43 * necessary to access a particular service.
44 *
45 * In effect, Bonjour combines the functions of a local DNS server and
46 * AppleTalk. Bonjour allows applications to provide user-friendly printer
47 * and server browsing, among other things, over standard IP networks.
48 * This behavior is a result of combining protocols such as multicast and
49 * DNS to add new functionality to the network (such as multicast DNS).
50 *
51 * Bonjour gives applications easy access to services over local IP
52 * networks without requiring the service or the application to support
53 * an AppleTalk or a Netbeui stack, and without requiring a DNS server
54 * for the local network.
55 */
56
57
58 /* _DNS_SD_H contains the mDNSResponder version number for this header file, formatted as follows:
59 * Major part of the build number * 10000 +
60 * minor part of the build number * 100
61 * For example, Mac OS X 10.4.9 has mDNSResponder-108.4, which would be represented as
62 * version 1080400. This allows C code to do simple greater-than and less-than comparisons:
63 * e.g. an application that requires the DNSServiceGetProperty() call (new in mDNSResponder-126) can check:
64 *
65 * #if _DNS_SD_H+0 >= 1260000
66 * ... some C code that calls DNSServiceGetProperty() ...
67 * #endif
68 *
69 * The version defined in this header file symbol allows for compile-time
70 * checking, so that C code building with earlier versions of the header file
71 * can avoid compile errors trying to use functions that aren't even defined
72 * in those earlier versions. Similar checks may also be performed at run-time:
73 * => weak linking -- to avoid link failures if run with an earlier
74 * version of the library that's missing some desired symbol, or
75 * => DNSServiceGetProperty(DaemonVersion) -- to verify whether the running daemon
76 * ("system service" on Windows) meets some required minimum functionality level.
77 */
78
79 #ifndef _DNS_SD_H
80 #define _DNS_SD_H 2582100
81
82 #ifdef __cplusplus
83 extern "C" {
84 #endif
85
86 /* Set to 1 if libdispatch is supported
87 * Note: May also be set by project and/or Makefile
88 */
89 #ifndef _DNS_SD_LIBDISPATCH
90 #define _DNS_SD_LIBDISPATCH 0
91 #endif /* ndef _DNS_SD_LIBDISPATCH */
92
93 /* standard calling convention under Win32 is __stdcall */
94 /* Note: When compiling Intel EFI (Extensible Firmware Interface) under MS Visual Studio, the */
95 /* _WIN32 symbol is defined by the compiler even though it's NOT compiling code for Windows32 */
96 #if defined(_WIN32) && !defined(EFI32) && !defined(EFI64)
97 #define DNSSD_API __stdcall
98 #else
99 #define DNSSD_API
100 #endif
101
102 /* stdint.h does not exist on FreeBSD 4.x; its types are defined in sys/types.h instead */
103 #if defined(__FreeBSD__) && (__FreeBSD__ < 5)
104 #include <sys/types.h>
105
106 /* Likewise, on Sun, standard integer types are in sys/types.h */
107 #elif defined(__sun__)
108 #include <sys/types.h>
109
110 /* EFI does not have stdint.h, or anything else equivalent */
111 #elif defined(EFI32) || defined(EFI64) || defined(EFIX64)
112 #include "Tiano.h"
113 #if !defined(_STDINT_H_)
114 typedef UINT8 uint8_t;
115 typedef INT8 int8_t;
116 typedef UINT16 uint16_t;
117 typedef INT16 int16_t;
118 typedef UINT32 uint32_t;
119 typedef INT32 int32_t;
120 #endif
121 /* Windows has its own differences */
122 #elif defined(_WIN32)
123 #include <windows.h>
124 #define _UNUSED
125 #ifndef _MSL_STDINT_H
126 typedef UINT8 uint8_t;
127 typedef INT8 int8_t;
128 typedef UINT16 uint16_t;
129 typedef INT16 int16_t;
130 typedef UINT32 uint32_t;
131 typedef INT32 int32_t;
132 #endif
133
134 /* All other Posix platforms use stdint.h */
135 #else
136 #include <stdint.h>
137 #endif
138
139 #if _DNS_SD_LIBDISPATCH
140 #include <dispatch/dispatch.h>
141 #endif
142
143 /* DNSServiceRef, DNSRecordRef
144 *
145 * Opaque internal data types.
146 * Note: client is responsible for serializing access to these structures if
147 * they are shared between concurrent threads.
148 */
149
150 typedef struct _DNSServiceRef_t *DNSServiceRef;
151 typedef struct _DNSRecordRef_t *DNSRecordRef;
152
153 struct sockaddr;
154
155 /*! @enum General flags
156 * Most DNS-SD API functions and callbacks include a DNSServiceFlags parameter.
157 * As a general rule, any given bit in the 32-bit flags field has a specific fixed meaning,
158 * regardless of the function or callback being used. For any given function or callback,
159 * typically only a subset of the possible flags are meaningful, and all others should be zero.
160 * The discussion section for each API call describes which flags are valid for that call
161 * and callback. In some cases, for a particular call, it may be that no flags are currently
162 * defined, in which case the DNSServiceFlags parameter exists purely to allow future expansion.
163 * In all cases, developers should expect that in future releases, it is possible that new flag
164 * values will be defined, and write code with this in mind. For example, code that tests
165 * if (flags == kDNSServiceFlagsAdd) ...
166 * will fail if, in a future release, another bit in the 32-bit flags field is also set.
167 * The reliable way to test whether a particular bit is set is not with an equality test,
168 * but with a bitwise mask:
169 * if (flags & kDNSServiceFlagsAdd) ...
170 */
171 enum
172 {
173 kDNSServiceFlagsMoreComing = 0x1,
174 /* MoreComing indicates to a callback that at least one more result is
175 * queued and will be delivered following immediately after this one.
176 * When the MoreComing flag is set, applications should not immediately
177 * update their UI, because this can result in a great deal of ugly flickering
178 * on the screen, and can waste a great deal of CPU time repeatedly updating
179 * the screen with content that is then immediately erased, over and over.
180 * Applications should wait until until MoreComing is not set, and then
181 * update their UI when no more changes are imminent.
182 * When MoreComing is not set, that doesn't mean there will be no more
183 * answers EVER, just that there are no more answers immediately
184 * available right now at this instant. If more answers become available
185 * in the future they will be delivered as usual.
186 */
187
188 kDNSServiceFlagsAdd = 0x2,
189 kDNSServiceFlagsDefault = 0x4,
190 /* Flags for domain enumeration and browse/query reply callbacks.
191 * "Default" applies only to enumeration and is only valid in
192 * conjunction with "Add". An enumeration callback with the "Add"
193 * flag NOT set indicates a "Remove", i.e. the domain is no longer
194 * valid.
195 */
196
197 kDNSServiceFlagsNoAutoRename = 0x8,
198 /* Flag for specifying renaming behavior on name conflict when registering
199 * non-shared records. By default, name conflicts are automatically handled
200 * by renaming the service. NoAutoRename overrides this behavior - with this
201 * flag set, name conflicts will result in a callback. The NoAutorename flag
202 * is only valid if a name is explicitly specified when registering a service
203 * (i.e. the default name is not used.)
204 */
205
206 kDNSServiceFlagsShared = 0x10,
207 kDNSServiceFlagsUnique = 0x20,
208 /* Flag for registering individual records on a connected
209 * DNSServiceRef. Shared indicates that there may be multiple records
210 * with this name on the network (e.g. PTR records). Unique indicates that the
211 * record's name is to be unique on the network (e.g. SRV records).
212 */
213
214 kDNSServiceFlagsBrowseDomains = 0x40,
215 kDNSServiceFlagsRegistrationDomains = 0x80,
216 /* Flags for specifying domain enumeration type in DNSServiceEnumerateDomains.
217 * BrowseDomains enumerates domains recommended for browsing, RegistrationDomains
218 * enumerates domains recommended for registration.
219 */
220
221 kDNSServiceFlagsLongLivedQuery = 0x100,
222 /* Flag for creating a long-lived unicast query for the DNSServiceQueryRecord call. */
223
224 kDNSServiceFlagsAllowRemoteQuery = 0x200,
225 /* Flag for creating a record for which we will answer remote queries
226 * (queries from hosts more than one hop away; hosts not directly connected to the local link).
227 */
228
229 kDNSServiceFlagsForceMulticast = 0x400,
230 /* Flag for signifying that a query or registration should be performed exclusively via multicast
231 * DNS, even for a name in a domain (e.g. foo.apple.com.) that would normally imply unicast DNS.
232 */
233
234 kDNSServiceFlagsForce = 0x800,
235 /* Flag for signifying a "stronger" variant of an operation.
236 * Currently defined only for DNSServiceReconfirmRecord(), where it forces a record to
237 * be removed from the cache immediately, instead of querying for a few seconds before
238 * concluding that the record is no longer valid and then removing it. This flag should
239 * be used with caution because if a service browsing PTR record is indeed still valid
240 * on the network, forcing its removal will result in a user-interface flap -- the
241 * discovered service instance will disappear, and then re-appear moments later.
242 */
243
244 kDNSServiceFlagsReturnIntermediates = 0x1000,
245 /* Flag for returning intermediate results.
246 * For example, if a query results in an authoritative NXDomain (name does not exist)
247 * then that result is returned to the client. However the query is not implicitly
248 * cancelled -- it remains active and if the answer subsequently changes
249 * (e.g. because a VPN tunnel is subsequently established) then that positive
250 * result will still be returned to the client.
251 * Similarly, if a query results in a CNAME record, then in addition to following
252 * the CNAME referral, the intermediate CNAME result is also returned to the client.
253 * When this flag is not set, NXDomain errors are not returned, and CNAME records
254 * are followed silently without informing the client of the intermediate steps.
255 * (In earlier builds this flag was briefly calledkDNSServiceFlagsReturnCNAME)
256 */
257
258 kDNSServiceFlagsNonBrowsable = 0x2000,
259 /* A service registered with the NonBrowsable flag set can be resolved using
260 * DNSServiceResolve(), but will not be discoverable using DNSServiceBrowse().
261 * This is for cases where the name is actually a GUID; it is found by other means;
262 * there is no end-user benefit to browsing to find a long list of opaque GUIDs.
263 * Using the NonBrowsable flag creates SRV+TXT without the cost of also advertising
264 * an associated PTR record.
265 */
266
267 kDNSServiceFlagsShareConnection = 0x4000,
268 /* For efficiency, clients that perform many concurrent operations may want to use a
269 * single Unix Domain Socket connection with the background daemon, instead of having a
270 * separate connection for each independent operation. To use this mode, clients first
271 * call DNSServiceCreateConnection(&MainRef) to initialize the main DNSServiceRef.
272 * For each subsequent operation that is to share that same connection, the client copies
273 * the MainRef, and then passes the address of that copy, setting the ShareConnection flag
274 * to tell the library that this DNSServiceRef is not a typical uninitialized DNSServiceRef;
275 * it's a copy of an existing DNSServiceRef whose connection information should be reused.
276 *
277 * For example:
278 *
279 * DNSServiceErrorType error;
280 * DNSServiceRef MainRef;
281 * error = DNSServiceCreateConnection(&MainRef);
282 * if (error) ...
283 * DNSServiceRef BrowseRef = MainRef; // Important: COPY the primary DNSServiceRef first...
284 * error = DNSServiceBrowse(&BrowseRef, kDNSServiceFlagsShareConnection, ...); // then use the copy
285 * if (error) ...
286 * ...
287 * DNSServiceRefDeallocate(BrowseRef); // Terminate the browse operation
288 * DNSServiceRefDeallocate(MainRef); // Terminate the shared connection
289 *
290 * Notes:
291 *
292 * 1. Collective kDNSServiceFlagsMoreComing flag
293 * When callbacks are invoked using a shared DNSServiceRef, the
294 * kDNSServiceFlagsMoreComing flag applies collectively to *all* active
295 * operations sharing the same parent DNSServiceRef. If the MoreComing flag is
296 * set it means that there are more results queued on this parent DNSServiceRef,
297 * but not necessarily more results for this particular callback function.
298 * The implication of this for client programmers is that when a callback
299 * is invoked with the MoreComing flag set, the code should update its
300 * internal data structures with the new result, and set a variable indicating
301 * that its UI needs to be updated. Then, later when a callback is eventually
302 * invoked with the MoreComing flag not set, the code should update *all*
303 * stale UI elements related to that shared parent DNSServiceRef that need
304 * updating, not just the UI elements related to the particular callback
305 * that happened to be the last one to be invoked.
306 *
307 * 2. Canceling operations and kDNSServiceFlagsMoreComing
308 * Whenever you cancel any operation for which you had deferred UI updates
309 * waiting because of a kDNSServiceFlagsMoreComing flag, you should perform
310 * those deferred UI updates. This is because, after cancelling the operation,
311 * you can no longer wait for a callback *without* MoreComing set, to tell
312 * you do perform your deferred UI updates (the operation has been canceled,
313 * so there will be no more callbacks). An implication of the collective
314 * kDNSServiceFlagsMoreComing flag for shared connections is that this
315 * guideline applies more broadly -- any time you cancel an operation on
316 * a shared connection, you should perform all deferred UI updates for all
317 * operations sharing that connection. This is because the MoreComing flag
318 * might have been referring to events coming for the operation you canceled,
319 * which will now not be coming because the operation has been canceled.
320 *
321 * 3. Only share DNSServiceRef's created with DNSServiceCreateConnection
322 * Calling DNSServiceCreateConnection(&ref) creates a special shareable DNSServiceRef.
323 * DNSServiceRef's created by other calls like DNSServiceBrowse() or DNSServiceResolve()
324 * cannot be shared by copying them and using kDNSServiceFlagsShareConnection.
325 *
326 * 4. Don't Double-Deallocate
327 * Calling DNSServiceRefDeallocate(ref) for a particular operation's DNSServiceRef terminates
328 * just that operation. Calling DNSServiceRefDeallocate(ref) for the main shared DNSServiceRef
329 * (the parent DNSServiceRef, originally created by DNSServiceCreateConnection(&ref))
330 * automatically terminates the shared connection and all operations that were still using it.
331 * After doing this, DO NOT then attempt to deallocate any remaining subordinate DNSServiceRef's.
332 * The memory used by those subordinate DNSServiceRef's has already been freed, so any attempt
333 * to do a DNSServiceRefDeallocate (or any other operation) on them will result in accesses
334 * to freed memory, leading to crashes or other equally undesirable results.
335 *
336 * 5. Thread Safety
337 * The dns_sd.h API does not presuppose any particular threading model, and consequently
338 * does no locking of its own (which would require linking some specific threading library).
339 * If client code calls API routines on the same DNSServiceRef concurrently
340 * from multiple threads, it is the client's responsibility to use a mutext
341 * lock or take similar appropriate precautions to serialize those calls.
342 */
343
344 kDNSServiceFlagsSuppressUnusable = 0x8000,
345 /*
346 * This flag is meaningful only in DNSServiceQueryRecord which suppresses unusable queries on the
347 * wire. If "hostname" is a wide-area unicast DNS hostname (i.e. not a ".local." name)
348 * but this host has no routable IPv6 address, then the call will not try to look up IPv6 addresses
349 * for "hostname", since any addresses it found would be unlikely to be of any use anyway. Similarly,
350 * if this host has no routable IPv4 address, the call will not try to look up IPv4 addresses for
351 * "hostname".
352 */
353 kDNSServiceFlagsWakeOnResolve = 0x40000
354 /*
355 * This flag is meaningful only in DNSServiceResolve. When set, it tries to send a magic packet
356 * to wake up the client.
357 */
358
359 };
360
361 /* Possible protocols for DNSServiceNATPortMappingCreate(). */
362 enum
363 {
364 kDNSServiceProtocol_IPv4 = 0x01,
365 kDNSServiceProtocol_IPv6 = 0x02,
366 /* 0x04 and 0x08 reserved for future internetwork protocols */
367
368 kDNSServiceProtocol_UDP = 0x10,
369 kDNSServiceProtocol_TCP = 0x20
370 /* 0x40 and 0x80 reserved for future transport protocols, e.g. SCTP [RFC 2960]
371 * or DCCP [RFC 4340]. If future NAT gateways are created that support port
372 * mappings for these protocols, new constants will be defined here.
373 */
374 };
375
376 /*
377 * The values for DNS Classes and Types are listed in RFC 1035, and are available
378 * on every OS in its DNS header file. Unfortunately every OS does not have the
379 * same header file containing DNS Class and Type constants, and the names of
380 * the constants are not consistent. For example, BIND 8 uses "T_A",
381 * BIND 9 uses "ns_t_a", Windows uses "DNS_TYPE_A", etc.
382 * For this reason, these constants are also listed here, so that code using
383 * the DNS-SD programming APIs can use these constants, so that the same code
384 * can compile on all our supported platforms.
385 */
386
387 enum
388 {
389 kDNSServiceClass_IN = 1 /* Internet */
390 };
391
392 enum
393 {
394 kDNSServiceType_A = 1, /* Host address. */
395 kDNSServiceType_NS = 2, /* Authoritative server. */
396 kDNSServiceType_MD = 3, /* Mail destination. */
397 kDNSServiceType_MF = 4, /* Mail forwarder. */
398 kDNSServiceType_CNAME = 5, /* Canonical name. */
399 kDNSServiceType_SOA = 6, /* Start of authority zone. */
400 kDNSServiceType_MB = 7, /* Mailbox domain name. */
401 kDNSServiceType_MG = 8, /* Mail group member. */
402 kDNSServiceType_MR = 9, /* Mail rename name. */
403 kDNSServiceType_NULL = 10, /* Null resource record. */
404 kDNSServiceType_WKS = 11, /* Well known service. */
405 kDNSServiceType_PTR = 12, /* Domain name pointer. */
406 kDNSServiceType_HINFO = 13, /* Host information. */
407 kDNSServiceType_MINFO = 14, /* Mailbox information. */
408 kDNSServiceType_MX = 15, /* Mail routing information. */
409 kDNSServiceType_TXT = 16, /* One or more text strings (NOT "zero or more..."). */
410 kDNSServiceType_RP = 17, /* Responsible person. */
411 kDNSServiceType_AFSDB = 18, /* AFS cell database. */
412 kDNSServiceType_X25 = 19, /* X_25 calling address. */
413 kDNSServiceType_ISDN = 20, /* ISDN calling address. */
414 kDNSServiceType_RT = 21, /* Router. */
415 kDNSServiceType_NSAP = 22, /* NSAP address. */
416 kDNSServiceType_NSAP_PTR = 23, /* Reverse NSAP lookup (deprecated). */
417 kDNSServiceType_SIG = 24, /* Security signature. */
418 kDNSServiceType_KEY = 25, /* Security key. */
419 kDNSServiceType_PX = 26, /* X.400 mail mapping. */
420 kDNSServiceType_GPOS = 27, /* Geographical position (withdrawn). */
421 kDNSServiceType_AAAA = 28, /* IPv6 Address. */
422 kDNSServiceType_LOC = 29, /* Location Information. */
423 kDNSServiceType_NXT = 30, /* Next domain (security). */
424 kDNSServiceType_EID = 31, /* Endpoint identifier. */
425 kDNSServiceType_NIMLOC = 32, /* Nimrod Locator. */
426 kDNSServiceType_SRV = 33, /* Server Selection. */
427 kDNSServiceType_ATMA = 34, /* ATM Address */
428 kDNSServiceType_NAPTR = 35, /* Naming Authority PoinTeR */
429 kDNSServiceType_KX = 36, /* Key Exchange */
430 kDNSServiceType_CERT = 37, /* Certification record */
431 kDNSServiceType_A6 = 38, /* IPv6 Address (deprecated) */
432 kDNSServiceType_DNAME = 39, /* Non-terminal DNAME (for IPv6) */
433 kDNSServiceType_SINK = 40, /* Kitchen sink (experimental) */
434 kDNSServiceType_OPT = 41, /* EDNS0 option (meta-RR) */
435 kDNSServiceType_APL = 42, /* Address Prefix List */
436 kDNSServiceType_DS = 43, /* Delegation Signer */
437 kDNSServiceType_SSHFP = 44, /* SSH Key Fingerprint */
438 kDNSServiceType_IPSECKEY = 45, /* IPSECKEY */
439 kDNSServiceType_RRSIG = 46, /* RRSIG */
440 kDNSServiceType_NSEC = 47, /* Denial of Existence */
441 kDNSServiceType_DNSKEY = 48, /* DNSKEY */
442 kDNSServiceType_DHCID = 49, /* DHCP Client Identifier */
443 kDNSServiceType_NSEC3 = 50, /* Hashed Authenticated Denial of Existence */
444 kDNSServiceType_NSEC3PARAM = 51, /* Hashed Authenticated Denial of Existence */
445
446 kDNSServiceType_HIP = 55, /* Host Identity Protocol */
447
448 kDNSServiceType_SPF = 99, /* Sender Policy Framework for E-Mail */
449 kDNSServiceType_UINFO = 100, /* IANA-Reserved */
450 kDNSServiceType_UID = 101, /* IANA-Reserved */
451 kDNSServiceType_GID = 102, /* IANA-Reserved */
452 kDNSServiceType_UNSPEC = 103, /* IANA-Reserved */
453
454 kDNSServiceType_TKEY = 249, /* Transaction key */
455 kDNSServiceType_TSIG = 250, /* Transaction signature. */
456 kDNSServiceType_IXFR = 251, /* Incremental zone transfer. */
457 kDNSServiceType_AXFR = 252, /* Transfer zone of authority. */
458 kDNSServiceType_MAILB = 253, /* Transfer mailbox records. */
459 kDNSServiceType_MAILA = 254, /* Transfer mail agent records. */
460 kDNSServiceType_ANY = 255 /* Wildcard match. */
461 };
462
463 /* possible error code values */
464 enum
465 {
466 kDNSServiceErr_NoError = 0,
467 kDNSServiceErr_Unknown = -65537, /* 0xFFFE FFFF */
468 kDNSServiceErr_NoSuchName = -65538,
469 kDNSServiceErr_NoMemory = -65539,
470 kDNSServiceErr_BadParam = -65540,
471 kDNSServiceErr_BadReference = -65541,
472 kDNSServiceErr_BadState = -65542,
473 kDNSServiceErr_BadFlags = -65543,
474 kDNSServiceErr_Unsupported = -65544,
475 kDNSServiceErr_NotInitialized = -65545,
476 kDNSServiceErr_AlreadyRegistered = -65547,
477 kDNSServiceErr_NameConflict = -65548,
478 kDNSServiceErr_Invalid = -65549,
479 kDNSServiceErr_Firewall = -65550,
480 kDNSServiceErr_Incompatible = -65551, /* client library incompatible with daemon */
481 kDNSServiceErr_BadInterfaceIndex = -65552,
482 kDNSServiceErr_Refused = -65553,
483 kDNSServiceErr_NoSuchRecord = -65554,
484 kDNSServiceErr_NoAuth = -65555,
485 kDNSServiceErr_NoSuchKey = -65556,
486 kDNSServiceErr_NATTraversal = -65557,
487 kDNSServiceErr_DoubleNAT = -65558,
488 kDNSServiceErr_BadTime = -65559, /* Codes up to here existed in Tiger */
489 kDNSServiceErr_BadSig = -65560,
490 kDNSServiceErr_BadKey = -65561,
491 kDNSServiceErr_Transient = -65562,
492 kDNSServiceErr_ServiceNotRunning = -65563, /* Background daemon not running */
493 kDNSServiceErr_NATPortMappingUnsupported = -65564, /* NAT doesn't support NAT-PMP or UPnP */
494 kDNSServiceErr_NATPortMappingDisabled = -65565, /* NAT supports NAT-PMP or UPnP but it's disabled by the administrator */
495 kDNSServiceErr_NoRouter = -65566, /* No router currently configured (probably no network connectivity) */
496 kDNSServiceErr_PollingMode = -65567
497
498 /* mDNS Error codes are in the range
499 * FFFE FF00 (-65792) to FFFE FFFF (-65537) */
500 };
501
502 /* Maximum length, in bytes, of a service name represented as a */
503 /* literal C-String, including the terminating NULL at the end. */
504
505 #define kDNSServiceMaxServiceName 64
506
507 /* Maximum length, in bytes, of a domain name represented as an *escaped* C-String */
508 /* including the final trailing dot, and the C-String terminating NULL at the end. */
509
510 #define kDNSServiceMaxDomainName 1009
511
512 /*
513 * Notes on DNS Name Escaping
514 * -- or --
515 * "Why is kDNSServiceMaxDomainName 1009, when the maximum legal domain name is 256 bytes?"
516 *
517 * All strings used in the DNS-SD APIs are UTF-8 strings. Apart from the exceptions noted below,
518 * the APIs expect the strings to be properly escaped, using the conventional DNS escaping rules:
519 *
520 * '\\' represents a single literal '\' in the name
521 * '\.' represents a single literal '.' in the name
522 * '\ddd', where ddd is a three-digit decimal value from 000 to 255,
523 * represents a single literal byte with that value.
524 * A bare unescaped '.' is a label separator, marking a boundary between domain and subdomain.
525 *
526 * The exceptions, that do not use escaping, are the routines where the full
527 * DNS name of a resource is broken, for convenience, into servicename/regtype/domain.
528 * In these routines, the "servicename" is NOT escaped. It does not need to be, since
529 * it is, by definition, just a single literal string. Any characters in that string
530 * represent exactly what they are. The "regtype" portion is, technically speaking,
531 * escaped, but since legal regtypes are only allowed to contain letters, digits,
532 * and hyphens, there is nothing to escape, so the issue is moot. The "domain"
533 * portion is also escaped, though most domains in use on the public Internet
534 * today, like regtypes, don't contain any characters that need to be escaped.
535 * As DNS-SD becomes more popular, rich-text domains for service discovery will
536 * become common, so software should be written to cope with domains with escaping.
537 *
538 * The servicename may be up to 63 bytes of UTF-8 text (not counting the C-String
539 * terminating NULL at the end). The regtype is of the form _service._tcp or
540 * _service._udp, where the "service" part is 1-15 characters, which may be
541 * letters, digits, or hyphens. The domain part of the three-part name may be
542 * any legal domain, providing that the resulting servicename+regtype+domain
543 * name does not exceed 256 bytes.
544 *
545 * For most software, these issues are transparent. When browsing, the discovered
546 * servicenames should simply be displayed as-is. When resolving, the discovered
547 * servicename/regtype/domain are simply passed unchanged to DNSServiceResolve().
548 * When a DNSServiceResolve() succeeds, the returned fullname is already in
549 * the correct format to pass to standard system DNS APIs such as res_query().
550 * For converting from servicename/regtype/domain to a single properly-escaped
551 * full DNS name, the helper function DNSServiceConstructFullName() is provided.
552 *
553 * The following (highly contrived) example illustrates the escaping process.
554 * Suppose you have an service called "Dr. Smith\Dr. Johnson", of type "_ftp._tcp"
555 * in subdomain "4th. Floor" of subdomain "Building 2" of domain "apple.com."
556 * The full (escaped) DNS name of this service's SRV record would be:
557 * Dr\.\032Smith\\Dr\.\032Johnson._ftp._tcp.4th\.\032Floor.Building\0322.apple.com.
558 */
559
560
561 /*
562 * Constants for specifying an interface index
563 *
564 * Specific interface indexes are identified via a 32-bit unsigned integer returned
565 * by the if_nametoindex() family of calls.
566 *
567 * If the client passes 0 for interface index, that means "do the right thing",
568 * which (at present) means, "if the name is in an mDNS local multicast domain
569 * (e.g. 'local.', '254.169.in-addr.arpa.', '{8,9,A,B}.E.F.ip6.arpa.') then multicast
570 * on all applicable interfaces, otherwise send via unicast to the appropriate
571 * DNS server." Normally, most clients will use 0 for interface index to
572 * automatically get the default sensible behaviour.
573 *
574 * If the client passes a positive interface index, then for multicast names that
575 * indicates to do the operation only on that one interface. For unicast names the
576 * interface index is ignored unless kDNSServiceFlagsForceMulticast is also set.
577 *
578 * If the client passes kDNSServiceInterfaceIndexLocalOnly when registering
579 * a service, then that service will be found *only* by other local clients
580 * on the same machine that are browsing using kDNSServiceInterfaceIndexLocalOnly
581 * or kDNSServiceInterfaceIndexAny.
582 * If a client has a 'private' service, accessible only to other processes
583 * running on the same machine, this allows the client to advertise that service
584 * in a way such that it does not inadvertently appear in service lists on
585 * all the other machines on the network.
586 *
587 * If the client passes kDNSServiceInterfaceIndexLocalOnly when browsing
588 * then it will find *all* records registered on that same local machine.
589 * Clients explicitly wishing to discover *only* LocalOnly services can
590 * accomplish this by inspecting the interfaceIndex of each service reported
591 * to their DNSServiceBrowseReply() callback function, and discarding those
592 * where the interface index is not kDNSServiceInterfaceIndexLocalOnly.
593 *
594 * kDNSServiceInterfaceIndexP2P is meaningful only in Browse, QueryRecord,
595 * and Resolve operations. It should not be used in other DNSService APIs.
596 *
597 * - If kDNSServiceInterfaceIndexP2P is passed to DNSServiceBrowse or
598 * DNSServiceQueryRecord, it restricts the operation to P2P.
599 *
600 * - If kDNSServiceInterfaceIndexP2P is passed to DNSServiceResolve, it is
601 * mapped internally to kDNSServiceInterfaceIndexAny, because resolving
602 * a P2P service may create and/or enable an interface whose index is not
603 * known a priori. The resolve callback will indicate the index of the
604 * interface via which the service can be accessed.
605 *
606 * If applications pass kDNSServiceInterfaceIndexAny to DNSServiceBrowse
607 * or DNSServiceQueryRecord, the operation will also include P2P. In this
608 * case, if a service instance or the record being queried is found over P2P,
609 * the resulting ADD event will indicate kDNSServiceInterfaceIndexP2P as the
610 * interface index.
611 */
612
613 #define kDNSServiceInterfaceIndexAny 0
614 #define kDNSServiceInterfaceIndexLocalOnly ((uint32_t)-1)
615 #define kDNSServiceInterfaceIndexUnicast ((uint32_t)-2)
616 #define kDNSServiceInterfaceIndexP2P ((uint32_t)-3)
617
618 typedef uint32_t DNSServiceFlags;
619 typedef uint32_t DNSServiceProtocol;
620 typedef int32_t DNSServiceErrorType;
621
622
623 /*********************************************************************************************
624 *
625 * Version checking
626 *
627 *********************************************************************************************/
628
629 /* DNSServiceGetProperty() Parameters:
630 *
631 * property: The requested property.
632 * Currently the only property defined is kDNSServiceProperty_DaemonVersion.
633 *
634 * result: Place to store result.
635 * For retrieving DaemonVersion, this should be the address of a uint32_t.
636 *
637 * size: Pointer to uint32_t containing size of the result location.
638 * For retrieving DaemonVersion, this should be sizeof(uint32_t).
639 * On return the uint32_t is updated to the size of the data returned.
640 * For DaemonVersion, the returned size is always sizeof(uint32_t), but
641 * future properties could be defined which return variable-sized results.
642 *
643 * return value: Returns kDNSServiceErr_NoError on success, or kDNSServiceErr_ServiceNotRunning
644 * if the daemon (or "system service" on Windows) is not running.
645 */
646
647 DNSServiceErrorType DNSSD_API DNSServiceGetProperty
648 (
649 const char *property, /* Requested property (i.e. kDNSServiceProperty_DaemonVersion) */
650 void *result, /* Pointer to place to store result */
651 uint32_t *size /* size of result location */
652 );
653
654 /*
655 * When requesting kDNSServiceProperty_DaemonVersion, the result pointer must point
656 * to a 32-bit unsigned integer, and the size parameter must be set to sizeof(uint32_t).
657 *
658 * On return, the 32-bit unsigned integer contains the version number, formatted as follows:
659 * Major part of the build number * 10000 +
660 * minor part of the build number * 100
661 *
662 * For example, Mac OS X 10.4.9 has mDNSResponder-108.4, which would be represented as
663 * version 1080400. This allows applications to do simple greater-than and less-than comparisons:
664 * e.g. an application that requires at least mDNSResponder-108.4 can check:
665 *
666 * if (version >= 1080400) ...
667 *
668 * Example usage:
669 *
670 * uint32_t version;
671 * uint32_t size = sizeof(version);
672 * DNSServiceErrorType err = DNSServiceGetProperty(kDNSServiceProperty_DaemonVersion, &version, &size);
673 * if (!err) printf("Bonjour version is %d.%d\n", version / 10000, version / 100 % 100);
674 */
675
676 #define kDNSServiceProperty_DaemonVersion "DaemonVersion"
677
678
679 /*********************************************************************************************
680 *
681 * Unix Domain Socket access, DNSServiceRef deallocation, and data processing functions
682 *
683 *********************************************************************************************/
684
685 /* DNSServiceRefSockFD()
686 *
687 * Access underlying Unix domain socket for an initialized DNSServiceRef.
688 * The DNS Service Discovery implementation uses this socket to communicate between the client and
689 * the mDNSResponder daemon. The application MUST NOT directly read from or write to this socket.
690 * Access to the socket is provided so that it can be used as a kqueue event source, a CFRunLoop
691 * event source, in a select() loop, etc. When the underlying event management subsystem (kqueue/
692 * select/CFRunLoop etc.) indicates to the client that data is available for reading on the
693 * socket, the client should call DNSServiceProcessResult(), which will extract the daemon's
694 * reply from the socket, and pass it to the appropriate application callback. By using a run
695 * loop or select(), results from the daemon can be processed asynchronously. Alternatively,
696 * a client can choose to fork a thread and have it loop calling "DNSServiceProcessResult(ref);"
697 * If DNSServiceProcessResult() is called when no data is available for reading on the socket, it
698 * will block until data does become available, and then process the data and return to the caller.
699 * When data arrives on the socket, the client is responsible for calling DNSServiceProcessResult(ref)
700 * in a timely fashion -- if the client allows a large backlog of data to build up the daemon
701 * may terminate the connection.
702 *
703 * sdRef: A DNSServiceRef initialized by any of the DNSService calls.
704 *
705 * return value: The DNSServiceRef's underlying socket descriptor, or -1 on
706 * error.
707 */
708
709 int DNSSD_API DNSServiceRefSockFD(DNSServiceRef sdRef);
710
711
712 /* DNSServiceProcessResult()
713 *
714 * Read a reply from the daemon, calling the appropriate application callback. This call will
715 * block until the daemon's response is received. Use DNSServiceRefSockFD() in
716 * conjunction with a run loop or select() to determine the presence of a response from the
717 * server before calling this function to process the reply without blocking. Call this function
718 * at any point if it is acceptable to block until the daemon's response arrives. Note that the
719 * client is responsible for ensuring that DNSServiceProcessResult() is called whenever there is
720 * a reply from the daemon - the daemon may terminate its connection with a client that does not
721 * process the daemon's responses.
722 *
723 * sdRef: A DNSServiceRef initialized by any of the DNSService calls
724 * that take a callback parameter.
725 *
726 * return value: Returns kDNSServiceErr_NoError on success, otherwise returns
727 * an error code indicating the specific failure that occurred.
728 */
729
730 DNSServiceErrorType DNSSD_API DNSServiceProcessResult(DNSServiceRef sdRef);
731
732
733 /* DNSServiceRefDeallocate()
734 *
735 * Terminate a connection with the daemon and free memory associated with the DNSServiceRef.
736 * Any services or records registered with this DNSServiceRef will be deregistered. Any
737 * Browse, Resolve, or Query operations called with this reference will be terminated.
738 *
739 * Note: If the reference's underlying socket is used in a run loop or select() call, it should
740 * be removed BEFORE DNSServiceRefDeallocate() is called, as this function closes the reference's
741 * socket.
742 *
743 * Note: If the reference was initialized with DNSServiceCreateConnection(), any DNSRecordRefs
744 * created via this reference will be invalidated by this call - the resource records are
745 * deregistered, and their DNSRecordRefs may not be used in subsequent functions. Similarly,
746 * if the reference was initialized with DNSServiceRegister, and an extra resource record was
747 * added to the service via DNSServiceAddRecord(), the DNSRecordRef created by the Add() call
748 * is invalidated when this function is called - the DNSRecordRef may not be used in subsequent
749 * functions.
750 *
751 * Note: This call is to be used only with the DNSServiceRef defined by this API. It is
752 * not compatible with dns_service_discovery_ref objects defined in the legacy Mach-based
753 * DNSServiceDiscovery.h API.
754 *
755 * sdRef: A DNSServiceRef initialized by any of the DNSService calls.
756 *
757 */
758
759 void DNSSD_API DNSServiceRefDeallocate(DNSServiceRef sdRef);
760
761
762 /*********************************************************************************************
763 *
764 * Domain Enumeration
765 *
766 *********************************************************************************************/
767
768 /* DNSServiceEnumerateDomains()
769 *
770 * Asynchronously enumerate domains available for browsing and registration.
771 *
772 * The enumeration MUST be cancelled via DNSServiceRefDeallocate() when no more domains
773 * are to be found.
774 *
775 * Note that the names returned are (like all of DNS-SD) UTF-8 strings,
776 * and are escaped using standard DNS escaping rules.
777 * (See "Notes on DNS Name Escaping" earlier in this file for more details.)
778 * A graphical browser displaying a hierarchical tree-structured view should cut
779 * the names at the bare dots to yield individual labels, then de-escape each
780 * label according to the escaping rules, and then display the resulting UTF-8 text.
781 *
782 * DNSServiceDomainEnumReply Callback Parameters:
783 *
784 * sdRef: The DNSServiceRef initialized by DNSServiceEnumerateDomains().
785 *
786 * flags: Possible values are:
787 * kDNSServiceFlagsMoreComing
788 * kDNSServiceFlagsAdd
789 * kDNSServiceFlagsDefault
790 *
791 * interfaceIndex: Specifies the interface on which the domain exists. (The index for a given
792 * interface is determined via the if_nametoindex() family of calls.)
793 *
794 * errorCode: Will be kDNSServiceErr_NoError (0) on success, otherwise indicates
795 * the failure that occurred (other parameters are undefined if errorCode is nonzero).
796 *
797 * replyDomain: The name of the domain.
798 *
799 * context: The context pointer passed to DNSServiceEnumerateDomains.
800 *
801 */
802
803 typedef void (DNSSD_API *DNSServiceDomainEnumReply)
804 (
805 DNSServiceRef sdRef,
806 DNSServiceFlags flags,
807 uint32_t interfaceIndex,
808 DNSServiceErrorType errorCode,
809 const char *replyDomain,
810 void *context
811 );
812
813
814 /* DNSServiceEnumerateDomains() Parameters:
815 *
816 * sdRef: A pointer to an uninitialized DNSServiceRef. If the call succeeds
817 * then it initializes the DNSServiceRef, returns kDNSServiceErr_NoError,
818 * and the enumeration operation will run indefinitely until the client
819 * terminates it by passing this DNSServiceRef to DNSServiceRefDeallocate().
820 *
821 * flags: Possible values are:
822 * kDNSServiceFlagsBrowseDomains to enumerate domains recommended for browsing.
823 * kDNSServiceFlagsRegistrationDomains to enumerate domains recommended
824 * for registration.
825 *
826 * interfaceIndex: If non-zero, specifies the interface on which to look for domains.
827 * (the index for a given interface is determined via the if_nametoindex()
828 * family of calls.) Most applications will pass 0 to enumerate domains on
829 * all interfaces. See "Constants for specifying an interface index" for more details.
830 *
831 * callBack: The function to be called when a domain is found or the call asynchronously
832 * fails.
833 *
834 * context: An application context pointer which is passed to the callback function
835 * (may be NULL).
836 *
837 * return value: Returns kDNSServiceErr_NoError on success (any subsequent, asynchronous
838 * errors are delivered to the callback), otherwise returns an error code indicating
839 * the error that occurred (the callback is not invoked and the DNSServiceRef
840 * is not initialized).
841 */
842
843 DNSServiceErrorType DNSSD_API DNSServiceEnumerateDomains
844 (
845 DNSServiceRef *sdRef,
846 DNSServiceFlags flags,
847 uint32_t interfaceIndex,
848 DNSServiceDomainEnumReply callBack,
849 void *context /* may be NULL */
850 );
851
852
853 /*********************************************************************************************
854 *
855 * Service Registration
856 *
857 *********************************************************************************************/
858
859 /* Register a service that is discovered via Browse() and Resolve() calls.
860 *
861 * DNSServiceRegisterReply() Callback Parameters:
862 *
863 * sdRef: The DNSServiceRef initialized by DNSServiceRegister().
864 *
865 * flags: When a name is successfully registered, the callback will be
866 * invoked with the kDNSServiceFlagsAdd flag set. When Wide-Area
867 * DNS-SD is in use, it is possible for a single service to get
868 * more than one success callback (e.g. one in the "local" multicast
869 * DNS domain, and another in a wide-area unicast DNS domain).
870 * If a successfully-registered name later suffers a name conflict
871 * or similar problem and has to be deregistered, the callback will
872 * be invoked with the kDNSServiceFlagsAdd flag not set. The callback
873 * is *not* invoked in the case where the caller explicitly terminates
874 * the service registration by calling DNSServiceRefDeallocate(ref);
875 *
876 * errorCode: Will be kDNSServiceErr_NoError on success, otherwise will
877 * indicate the failure that occurred (including name conflicts,
878 * if the kDNSServiceFlagsNoAutoRename flag was used when registering.)
879 * Other parameters are undefined if errorCode is nonzero.
880 *
881 * name: The service name registered (if the application did not specify a name in
882 * DNSServiceRegister(), this indicates what name was automatically chosen).
883 *
884 * regtype: The type of service registered, as it was passed to the callout.
885 *
886 * domain: The domain on which the service was registered (if the application did not
887 * specify a domain in DNSServiceRegister(), this indicates the default domain
888 * on which the service was registered).
889 *
890 * context: The context pointer that was passed to the callout.
891 *
892 */
893
894 typedef void (DNSSD_API *DNSServiceRegisterReply)
895 (
896 DNSServiceRef sdRef,
897 DNSServiceFlags flags,
898 DNSServiceErrorType errorCode,
899 const char *name,
900 const char *regtype,
901 const char *domain,
902 void *context
903 );
904
905
906 /* DNSServiceRegister() Parameters:
907 *
908 * sdRef: A pointer to an uninitialized DNSServiceRef. If the call succeeds
909 * then it initializes the DNSServiceRef, returns kDNSServiceErr_NoError,
910 * and the registration will remain active indefinitely until the client
911 * terminates it by passing this DNSServiceRef to DNSServiceRefDeallocate().
912 *
913 * interfaceIndex: If non-zero, specifies the interface on which to register the service
914 * (the index for a given interface is determined via the if_nametoindex()
915 * family of calls.) Most applications will pass 0 to register on all
916 * available interfaces. See "Constants for specifying an interface index" for more details.
917 *
918 * flags: Indicates the renaming behavior on name conflict (most applications
919 * will pass 0). See flag definitions above for details.
920 *
921 * name: If non-NULL, specifies the service name to be registered.
922 * Most applications will not specify a name, in which case the computer
923 * name is used (this name is communicated to the client via the callback).
924 * If a name is specified, it must be 1-63 bytes of UTF-8 text.
925 * If the name is longer than 63 bytes it will be automatically truncated
926 * to a legal length, unless the NoAutoRename flag is set,
927 * in which case kDNSServiceErr_BadParam will be returned.
928 *
929 * regtype: The service type followed by the protocol, separated by a dot
930 * (e.g. "_ftp._tcp"). The service type must be an underscore, followed
931 * by 1-15 characters, which may be letters, digits, or hyphens.
932 * The transport protocol must be "_tcp" or "_udp". New service types
933 * should be registered at <http://www.dns-sd.org/ServiceTypes.html>.
934 *
935 * Additional subtypes of the primary service type (where a service
936 * type has defined subtypes) follow the primary service type in a
937 * comma-separated list, with no additional spaces, e.g.
938 * "_primarytype._tcp,_subtype1,_subtype2,_subtype3"
939 * Subtypes provide a mechanism for filtered browsing: A client browsing
940 * for "_primarytype._tcp" will discover all instances of this type;
941 * a client browsing for "_primarytype._tcp,_subtype2" will discover only
942 * those instances that were registered with "_subtype2" in their list of
943 * registered subtypes.
944 *
945 * The subtype mechanism can be illustrated with some examples using the
946 * dns-sd command-line tool:
947 *
948 * % dns-sd -R Simple _test._tcp "" 1001 &
949 * % dns-sd -R Better _test._tcp,HasFeatureA "" 1002 &
950 * % dns-sd -R Best _test._tcp,HasFeatureA,HasFeatureB "" 1003 &
951 *
952 * Now:
953 * % dns-sd -B _test._tcp # will find all three services
954 * % dns-sd -B _test._tcp,HasFeatureA # finds "Better" and "Best"
955 * % dns-sd -B _test._tcp,HasFeatureB # finds only "Best"
956 *
957 * Subtype labels may be up to 63 bytes long, and may contain any eight-
958 * bit byte values, including zero bytes. However, due to the nature of
959 * using a C-string-based API, conventional DNS escaping must be used for
960 * dots ('.'), commas (','), backslashes ('\') and zero bytes, as shown below:
961 *
962 * % dns-sd -R Test '_test._tcp,s\.one,s\,two,s\\three,s\000four' local 123
963 *
964 * domain: If non-NULL, specifies the domain on which to advertise the service.
965 * Most applications will not specify a domain, instead automatically
966 * registering in the default domain(s).
967 *
968 * host: If non-NULL, specifies the SRV target host name. Most applications
969 * will not specify a host, instead automatically using the machine's
970 * default host name(s). Note that specifying a non-NULL host does NOT
971 * create an address record for that host - the application is responsible
972 * for ensuring that the appropriate address record exists, or creating it
973 * via DNSServiceRegisterRecord().
974 *
975 * port: The port, in network byte order, on which the service accepts connections.
976 * Pass 0 for a "placeholder" service (i.e. a service that will not be discovered
977 * by browsing, but will cause a name conflict if another client tries to
978 * register that same name). Most clients will not use placeholder services.
979 *
980 * txtLen: The length of the txtRecord, in bytes. Must be zero if the txtRecord is NULL.
981 *
982 * txtRecord: The TXT record rdata. A non-NULL txtRecord MUST be a properly formatted DNS
983 * TXT record, i.e. <length byte> <data> <length byte> <data> ...
984 * Passing NULL for the txtRecord is allowed as a synonym for txtLen=1, txtRecord="",
985 * i.e. it creates a TXT record of length one containing a single empty string.
986 * RFC 1035 doesn't allow a TXT record to contain *zero* strings, so a single empty
987 * string is the smallest legal DNS TXT record.
988 * As with the other parameters, the DNSServiceRegister call copies the txtRecord
989 * data; e.g. if you allocated the storage for the txtRecord parameter with malloc()
990 * then you can safely free that memory right after the DNSServiceRegister call returns.
991 *
992 * callBack: The function to be called when the registration completes or asynchronously
993 * fails. The client MAY pass NULL for the callback - The client will NOT be notified
994 * of the default values picked on its behalf, and the client will NOT be notified of any
995 * asynchronous errors (e.g. out of memory errors, etc.) that may prevent the registration
996 * of the service. The client may NOT pass the NoAutoRename flag if the callback is NULL.
997 * The client may still deregister the service at any time via DNSServiceRefDeallocate().
998 *
999 * context: An application context pointer which is passed to the callback function
1000 * (may be NULL).
1001 *
1002 * return value: Returns kDNSServiceErr_NoError on success (any subsequent, asynchronous
1003 * errors are delivered to the callback), otherwise returns an error code indicating
1004 * the error that occurred (the callback is never invoked and the DNSServiceRef
1005 * is not initialized).
1006 */
1007
1008 DNSServiceErrorType DNSSD_API DNSServiceRegister
1009 (
1010 DNSServiceRef *sdRef,
1011 DNSServiceFlags flags,
1012 uint32_t interfaceIndex,
1013 const char *name, /* may be NULL */
1014 const char *regtype,
1015 const char *domain, /* may be NULL */
1016 const char *host, /* may be NULL */
1017 uint16_t port, /* In network byte order */
1018 uint16_t txtLen,
1019 const void *txtRecord, /* may be NULL */
1020 DNSServiceRegisterReply callBack, /* may be NULL */
1021 void *context /* may be NULL */
1022 );
1023
1024
1025 /* DNSServiceAddRecord()
1026 *
1027 * Add a record to a registered service. The name of the record will be the same as the
1028 * registered service's name.
1029 * The record can later be updated or deregistered by passing the RecordRef initialized
1030 * by this function to DNSServiceUpdateRecord() or DNSServiceRemoveRecord().
1031 *
1032 * Note that the DNSServiceAddRecord/UpdateRecord/RemoveRecord are *NOT* thread-safe
1033 * with respect to a single DNSServiceRef. If you plan to have multiple threads
1034 * in your program simultaneously add, update, or remove records from the same
1035 * DNSServiceRef, then it's the caller's responsibility to use a mutext lock
1036 * or take similar appropriate precautions to serialize those calls.
1037 *
1038 * Parameters;
1039 *
1040 * sdRef: A DNSServiceRef initialized by DNSServiceRegister().
1041 *
1042 * RecordRef: A pointer to an uninitialized DNSRecordRef. Upon succesfull completion of this
1043 * call, this ref may be passed to DNSServiceUpdateRecord() or DNSServiceRemoveRecord().
1044 * If the above DNSServiceRef is passed to DNSServiceRefDeallocate(), RecordRef is also
1045 * invalidated and may not be used further.
1046 *
1047 * flags: Currently ignored, reserved for future use.
1048 *
1049 * rrtype: The type of the record (e.g. kDNSServiceType_TXT, kDNSServiceType_SRV, etc)
1050 *
1051 * rdlen: The length, in bytes, of the rdata.
1052 *
1053 * rdata: The raw rdata to be contained in the added resource record.
1054 *
1055 * ttl: The time to live of the resource record, in seconds.
1056 * Most clients should pass 0 to indicate that the system should
1057 * select a sensible default value.
1058 *
1059 * return value: Returns kDNSServiceErr_NoError on success, otherwise returns an
1060 * error code indicating the error that occurred (the RecordRef is not initialized).
1061 */
1062
1063 DNSServiceErrorType DNSSD_API DNSServiceAddRecord
1064 (
1065 DNSServiceRef sdRef,
1066 DNSRecordRef *RecordRef,
1067 DNSServiceFlags flags,
1068 uint16_t rrtype,
1069 uint16_t rdlen,
1070 const void *rdata,
1071 uint32_t ttl
1072 );
1073
1074
1075 /* DNSServiceUpdateRecord
1076 *
1077 * Update a registered resource record. The record must either be:
1078 * - The primary txt record of a service registered via DNSServiceRegister()
1079 * - A record added to a registered service via DNSServiceAddRecord()
1080 * - An individual record registered by DNSServiceRegisterRecord()
1081 *
1082 * Parameters:
1083 *
1084 * sdRef: A DNSServiceRef that was initialized by DNSServiceRegister()
1085 * or DNSServiceCreateConnection().
1086 *
1087 * RecordRef: A DNSRecordRef initialized by DNSServiceAddRecord, or NULL to update the
1088 * service's primary txt record.
1089 *
1090 * flags: Currently ignored, reserved for future use.
1091 *
1092 * rdlen: The length, in bytes, of the new rdata.
1093 *
1094 * rdata: The new rdata to be contained in the updated resource record.
1095 *
1096 * ttl: The time to live of the updated resource record, in seconds.
1097 * Most clients should pass 0 to indicate that the system should
1098 * select a sensible default value.
1099 *
1100 * return value: Returns kDNSServiceErr_NoError on success, otherwise returns an
1101 * error code indicating the error that occurred.
1102 */
1103
1104 DNSServiceErrorType DNSSD_API DNSServiceUpdateRecord
1105 (
1106 DNSServiceRef sdRef,
1107 DNSRecordRef RecordRef, /* may be NULL */
1108 DNSServiceFlags flags,
1109 uint16_t rdlen,
1110 const void *rdata,
1111 uint32_t ttl
1112 );
1113
1114
1115 /* DNSServiceRemoveRecord
1116 *
1117 * Remove a record previously added to a service record set via DNSServiceAddRecord(), or deregister
1118 * an record registered individually via DNSServiceRegisterRecord().
1119 *
1120 * Parameters:
1121 *
1122 * sdRef: A DNSServiceRef initialized by DNSServiceRegister() (if the
1123 * record being removed was registered via DNSServiceAddRecord()) or by
1124 * DNSServiceCreateConnection() (if the record being removed was registered via
1125 * DNSServiceRegisterRecord()).
1126 *
1127 * recordRef: A DNSRecordRef initialized by a successful call to DNSServiceAddRecord()
1128 * or DNSServiceRegisterRecord().
1129 *
1130 * flags: Currently ignored, reserved for future use.
1131 *
1132 * return value: Returns kDNSServiceErr_NoError on success, otherwise returns an
1133 * error code indicating the error that occurred.
1134 */
1135
1136 DNSServiceErrorType DNSSD_API DNSServiceRemoveRecord
1137 (
1138 DNSServiceRef sdRef,
1139 DNSRecordRef RecordRef,
1140 DNSServiceFlags flags
1141 );
1142
1143
1144 /*********************************************************************************************
1145 *
1146 * Service Discovery
1147 *
1148 *********************************************************************************************/
1149
1150 /* Browse for instances of a service.
1151 *
1152 * DNSServiceBrowseReply() Parameters:
1153 *
1154 * sdRef: The DNSServiceRef initialized by DNSServiceBrowse().
1155 *
1156 * flags: Possible values are kDNSServiceFlagsMoreComing and kDNSServiceFlagsAdd.
1157 * See flag definitions for details.
1158 *
1159 * interfaceIndex: The interface on which the service is advertised. This index should
1160 * be passed to DNSServiceResolve() when resolving the service.
1161 *
1162 * errorCode: Will be kDNSServiceErr_NoError (0) on success, otherwise will
1163 * indicate the failure that occurred. Other parameters are undefined if
1164 * the errorCode is nonzero.
1165 *
1166 * serviceName: The discovered service name. This name should be displayed to the user,
1167 * and stored for subsequent use in the DNSServiceResolve() call.
1168 *
1169 * regtype: The service type, which is usually (but not always) the same as was passed
1170 * to DNSServiceBrowse(). One case where the discovered service type may
1171 * not be the same as the requested service type is when using subtypes:
1172 * The client may want to browse for only those ftp servers that allow
1173 * anonymous connections. The client will pass the string "_ftp._tcp,_anon"
1174 * to DNSServiceBrowse(), but the type of the service that's discovered
1175 * is simply "_ftp._tcp". The regtype for each discovered service instance
1176 * should be stored along with the name, so that it can be passed to
1177 * DNSServiceResolve() when the service is later resolved.
1178 *
1179 * domain: The domain of the discovered service instance. This may or may not be the
1180 * same as the domain that was passed to DNSServiceBrowse(). The domain for each
1181 * discovered service instance should be stored along with the name, so that
1182 * it can be passed to DNSServiceResolve() when the service is later resolved.
1183 *
1184 * context: The context pointer that was passed to the callout.
1185 *
1186 */
1187
1188 typedef void (DNSSD_API *DNSServiceBrowseReply)
1189 (
1190 DNSServiceRef sdRef,
1191 DNSServiceFlags flags,
1192 uint32_t interfaceIndex,
1193 DNSServiceErrorType errorCode,
1194 const char *serviceName,
1195 const char *regtype,
1196 const char *replyDomain,
1197 void *context
1198 );
1199
1200
1201 /* DNSServiceBrowse() Parameters:
1202 *
1203 * sdRef: A pointer to an uninitialized DNSServiceRef. If the call succeeds
1204 * then it initializes the DNSServiceRef, returns kDNSServiceErr_NoError,
1205 * and the browse operation will run indefinitely until the client
1206 * terminates it by passing this DNSServiceRef to DNSServiceRefDeallocate().
1207 *
1208 * flags: Currently ignored, reserved for future use.
1209 *
1210 * interfaceIndex: If non-zero, specifies the interface on which to browse for services
1211 * (the index for a given interface is determined via the if_nametoindex()
1212 * family of calls.) Most applications will pass 0 to browse on all available
1213 * interfaces. See "Constants for specifying an interface index" for more details.
1214 *
1215 * regtype: The service type being browsed for followed by the protocol, separated by a
1216 * dot (e.g. "_ftp._tcp"). The transport protocol must be "_tcp" or "_udp".
1217 * A client may optionally specify a single subtype to perform filtered browsing:
1218 * e.g. browsing for "_primarytype._tcp,_subtype" will discover only those
1219 * instances of "_primarytype._tcp" that were registered specifying "_subtype"
1220 * in their list of registered subtypes.
1221 *
1222 * domain: If non-NULL, specifies the domain on which to browse for services.
1223 * Most applications will not specify a domain, instead browsing on the
1224 * default domain(s).
1225 *
1226 * callBack: The function to be called when an instance of the service being browsed for
1227 * is found, or if the call asynchronously fails.
1228 *
1229 * context: An application context pointer which is passed to the callback function
1230 * (may be NULL).
1231 *
1232 * return value: Returns kDNSServiceErr_NoError on success (any subsequent, asynchronous
1233 * errors are delivered to the callback), otherwise returns an error code indicating
1234 * the error that occurred (the callback is not invoked and the DNSServiceRef
1235 * is not initialized).
1236 */
1237
1238 DNSServiceErrorType DNSSD_API DNSServiceBrowse
1239 (
1240 DNSServiceRef *sdRef,
1241 DNSServiceFlags flags,
1242 uint32_t interfaceIndex,
1243 const char *regtype,
1244 const char *domain, /* may be NULL */
1245 DNSServiceBrowseReply callBack,
1246 void *context /* may be NULL */
1247 );
1248
1249
1250 /* DNSServiceResolve()
1251 *
1252 * Resolve a service name discovered via DNSServiceBrowse() to a target host name, port number, and
1253 * txt record.
1254 *
1255 * Note: Applications should NOT use DNSServiceResolve() solely for txt record monitoring - use
1256 * DNSServiceQueryRecord() instead, as it is more efficient for this task.
1257 *
1258 * Note: When the desired results have been returned, the client MUST terminate the resolve by calling
1259 * DNSServiceRefDeallocate().
1260 *
1261 * Note: DNSServiceResolve() behaves correctly for typical services that have a single SRV record
1262 * and a single TXT record. To resolve non-standard services with multiple SRV or TXT records,
1263 * DNSServiceQueryRecord() should be used.
1264 *
1265 * DNSServiceResolveReply Callback Parameters:
1266 *
1267 * sdRef: The DNSServiceRef initialized by DNSServiceResolve().
1268 *
1269 * flags: Possible values: kDNSServiceFlagsMoreComing
1270 *
1271 * interfaceIndex: The interface on which the service was resolved.
1272 *
1273 * errorCode: Will be kDNSServiceErr_NoError (0) on success, otherwise will
1274 * indicate the failure that occurred. Other parameters are undefined if
1275 * the errorCode is nonzero.
1276 *
1277 * fullname: The full service domain name, in the form <servicename>.<protocol>.<domain>.
1278 * (This name is escaped following standard DNS rules, making it suitable for
1279 * passing to standard system DNS APIs such as res_query(), or to the
1280 * special-purpose functions included in this API that take fullname parameters.
1281 * See "Notes on DNS Name Escaping" earlier in this file for more details.)
1282 *
1283 * hosttarget: The target hostname of the machine providing the service. This name can
1284 * be passed to functions like gethostbyname() to identify the host's IP address.
1285 *
1286 * port: The port, in network byte order, on which connections are accepted for this service.
1287 *
1288 * txtLen: The length of the txt record, in bytes.
1289 *
1290 * txtRecord: The service's primary txt record, in standard txt record format.
1291 *
1292 * context: The context pointer that was passed to the callout.
1293 *
1294 * NOTE: In earlier versions of this header file, the txtRecord parameter was declared "const char *"
1295 * This is incorrect, since it contains length bytes which are values in the range 0 to 255, not -128 to +127.
1296 * Depending on your compiler settings, this change may cause signed/unsigned mismatch warnings.
1297 * These should be fixed by updating your own callback function definition to match the corrected
1298 * function signature using "const unsigned char *txtRecord". Making this change may also fix inadvertent
1299 * bugs in your callback function, where it could have incorrectly interpreted a length byte with value 250
1300 * as being -6 instead, with various bad consequences ranging from incorrect operation to software crashes.
1301 * If you need to maintain portable code that will compile cleanly with both the old and new versions of
1302 * this header file, you should update your callback function definition to use the correct unsigned value,
1303 * and then in the place where you pass your callback function to DNSServiceResolve(), use a cast to eliminate
1304 * the compiler warning, e.g.:
1305 * DNSServiceResolve(sd, flags, index, name, regtype, domain, (DNSServiceResolveReply)MyCallback, context);
1306 * This will ensure that your code compiles cleanly without warnings (and more importantly, works correctly)
1307 * with both the old header and with the new corrected version.
1308 *
1309 */
1310
1311 typedef void (DNSSD_API *DNSServiceResolveReply)
1312 (
1313 DNSServiceRef sdRef,
1314 DNSServiceFlags flags,
1315 uint32_t interfaceIndex,
1316 DNSServiceErrorType errorCode,
1317 const char *fullname,
1318 const char *hosttarget,
1319 uint16_t port, /* In network byte order */
1320 uint16_t txtLen,
1321 const unsigned char *txtRecord,
1322 void *context
1323 );
1324
1325
1326 /* DNSServiceResolve() Parameters
1327 *
1328 * sdRef: A pointer to an uninitialized DNSServiceRef. If the call succeeds
1329 * then it initializes the DNSServiceRef, returns kDNSServiceErr_NoError,
1330 * and the resolve operation will run indefinitely until the client
1331 * terminates it by passing this DNSServiceRef to DNSServiceRefDeallocate().
1332 *
1333 * flags: Specifying kDNSServiceFlagsForceMulticast will cause query to be
1334 * performed with a link-local mDNS query, even if the name is an
1335 * apparently non-local name (i.e. a name not ending in ".local.")
1336 *
1337 * interfaceIndex: The interface on which to resolve the service. If this resolve call is
1338 * as a result of a currently active DNSServiceBrowse() operation, then the
1339 * interfaceIndex should be the index reported in the DNSServiceBrowseReply
1340 * callback. If this resolve call is using information previously saved
1341 * (e.g. in a preference file) for later use, then use interfaceIndex 0, because
1342 * the desired service may now be reachable via a different physical interface.
1343 * See "Constants for specifying an interface index" for more details.
1344 *
1345 * name: The name of the service instance to be resolved, as reported to the
1346 * DNSServiceBrowseReply() callback.
1347 *
1348 * regtype: The type of the service instance to be resolved, as reported to the
1349 * DNSServiceBrowseReply() callback.
1350 *
1351 * domain: The domain of the service instance to be resolved, as reported to the
1352 * DNSServiceBrowseReply() callback.
1353 *
1354 * callBack: The function to be called when a result is found, or if the call
1355 * asynchronously fails.
1356 *
1357 * context: An application context pointer which is passed to the callback function
1358 * (may be NULL).
1359 *
1360 * return value: Returns kDNSServiceErr_NoError on success (any subsequent, asynchronous
1361 * errors are delivered to the callback), otherwise returns an error code indicating
1362 * the error that occurred (the callback is never invoked and the DNSServiceRef
1363 * is not initialized).
1364 */
1365
1366 DNSServiceErrorType DNSSD_API DNSServiceResolve
1367 (
1368 DNSServiceRef *sdRef,
1369 DNSServiceFlags flags,
1370 uint32_t interfaceIndex,
1371 const char *name,
1372 const char *regtype,
1373 const char *domain,
1374 DNSServiceResolveReply callBack,
1375 void *context /* may be NULL */
1376 );
1377
1378
1379 /*********************************************************************************************
1380 *
1381 * Querying Individual Specific Records
1382 *
1383 *********************************************************************************************/
1384
1385 /* DNSServiceQueryRecord
1386 *
1387 * Query for an arbitrary DNS record.
1388 *
1389 * DNSServiceQueryRecordReply() Callback Parameters:
1390 *
1391 * sdRef: The DNSServiceRef initialized by DNSServiceQueryRecord().
1392 *
1393 * flags: Possible values are kDNSServiceFlagsMoreComing and
1394 * kDNSServiceFlagsAdd. The Add flag is NOT set for PTR records
1395 * with a ttl of 0, i.e. "Remove" events.
1396 *
1397 * interfaceIndex: The interface on which the query was resolved (the index for a given
1398 * interface is determined via the if_nametoindex() family of calls).
1399 * See "Constants for specifying an interface index" for more details.
1400 *
1401 * errorCode: Will be kDNSServiceErr_NoError on success, otherwise will
1402 * indicate the failure that occurred. Other parameters are undefined if
1403 * errorCode is nonzero.
1404 *
1405 * fullname: The resource record's full domain name.
1406 *
1407 * rrtype: The resource record's type (e.g. kDNSServiceType_PTR, kDNSServiceType_SRV, etc)
1408 *
1409 * rrclass: The class of the resource record (usually kDNSServiceClass_IN).
1410 *
1411 * rdlen: The length, in bytes, of the resource record rdata.
1412 *
1413 * rdata: The raw rdata of the resource record.
1414 *
1415 * ttl: If the client wishes to cache the result for performance reasons,
1416 * the TTL indicates how long the client may legitimately hold onto
1417 * this result, in seconds. After the TTL expires, the client should
1418 * consider the result no longer valid, and if it requires this data
1419 * again, it should be re-fetched with a new query. Of course, this
1420 * only applies to clients that cancel the asynchronous operation when
1421 * they get a result. Clients that leave the asynchronous operation
1422 * running can safely assume that the data remains valid until they
1423 * get another callback telling them otherwise.
1424 *
1425 * context: The context pointer that was passed to the callout.
1426 *
1427 */
1428
1429 typedef void (DNSSD_API *DNSServiceQueryRecordReply)
1430 (
1431 DNSServiceRef sdRef,
1432 DNSServiceFlags flags,
1433 uint32_t interfaceIndex,
1434 DNSServiceErrorType errorCode,
1435 const char *fullname,
1436 uint16_t rrtype,
1437 uint16_t rrclass,
1438 uint16_t rdlen,
1439 const void *rdata,
1440 uint32_t ttl,
1441 void *context
1442 );
1443
1444
1445 /* DNSServiceQueryRecord() Parameters:
1446 *
1447 * sdRef: A pointer to an uninitialized DNSServiceRef. If the call succeeds
1448 * then it initializes the DNSServiceRef, returns kDNSServiceErr_NoError,
1449 * and the query operation will run indefinitely until the client
1450 * terminates it by passing this DNSServiceRef to DNSServiceRefDeallocate().
1451 *
1452 * flags: kDNSServiceFlagsForceMulticast or kDNSServiceFlagsLongLivedQuery.
1453 * Pass kDNSServiceFlagsLongLivedQuery to create a "long-lived" unicast
1454 * query in a non-local domain. Without setting this flag, unicast queries
1455 * will be one-shot - that is, only answers available at the time of the call
1456 * will be returned. By setting this flag, answers (including Add and Remove
1457 * events) that become available after the initial call is made will generate
1458 * callbacks. This flag has no effect on link-local multicast queries.
1459 *
1460 * interfaceIndex: If non-zero, specifies the interface on which to issue the query
1461 * (the index for a given interface is determined via the if_nametoindex()
1462 * family of calls.) Passing 0 causes the name to be queried for on all
1463 * interfaces. See "Constants for specifying an interface index" for more details.
1464 *
1465 * fullname: The full domain name of the resource record to be queried for.
1466 *
1467 * rrtype: The numerical type of the resource record to be queried for
1468 * (e.g. kDNSServiceType_PTR, kDNSServiceType_SRV, etc)
1469 *
1470 * rrclass: The class of the resource record (usually kDNSServiceClass_IN).
1471 *
1472 * callBack: The function to be called when a result is found, or if the call
1473 * asynchronously fails.
1474 *
1475 * context: An application context pointer which is passed to the callback function
1476 * (may be NULL).
1477 *
1478 * return value: Returns kDNSServiceErr_NoError on success (any subsequent, asynchronous
1479 * errors are delivered to the callback), otherwise returns an error code indicating
1480 * the error that occurred (the callback is never invoked and the DNSServiceRef
1481 * is not initialized).
1482 */
1483
1484 DNSServiceErrorType DNSSD_API DNSServiceQueryRecord
1485 (
1486 DNSServiceRef *sdRef,
1487 DNSServiceFlags flags,
1488 uint32_t interfaceIndex,
1489 const char *fullname,
1490 uint16_t rrtype,
1491 uint16_t rrclass,
1492 DNSServiceQueryRecordReply callBack,
1493 void *context /* may be NULL */
1494 );
1495
1496
1497 /*********************************************************************************************
1498 *
1499 * Unified lookup of both IPv4 and IPv6 addresses for a fully qualified hostname
1500 *
1501 *********************************************************************************************/
1502
1503 /* DNSServiceGetAddrInfo
1504 *
1505 * Queries for the IP address of a hostname by using either Multicast or Unicast DNS.
1506 *
1507 * DNSServiceGetAddrInfoReply() parameters:
1508 *
1509 * sdRef: The DNSServiceRef initialized by DNSServiceGetAddrInfo().
1510 *
1511 * flags: Possible values are kDNSServiceFlagsMoreComing and
1512 * kDNSServiceFlagsAdd.
1513 *
1514 * interfaceIndex: The interface to which the answers pertain.
1515 *
1516 * errorCode: Will be kDNSServiceErr_NoError on success, otherwise will
1517 * indicate the failure that occurred. Other parameters are
1518 * undefined if errorCode is nonzero.
1519 *
1520 * hostname: The fully qualified domain name of the host to be queried for.
1521 *
1522 * address: IPv4 or IPv6 address.
1523 *
1524 * ttl: If the client wishes to cache the result for performance reasons,
1525 * the TTL indicates how long the client may legitimately hold onto
1526 * this result, in seconds. After the TTL expires, the client should
1527 * consider the result no longer valid, and if it requires this data
1528 * again, it should be re-fetched with a new query. Of course, this
1529 * only applies to clients that cancel the asynchronous operation when
1530 * they get a result. Clients that leave the asynchronous operation
1531 * running can safely assume that the data remains valid until they
1532 * get another callback telling them otherwise.
1533 *
1534 * context: The context pointer that was passed to the callout.
1535 *
1536 */
1537
1538 typedef void (DNSSD_API *DNSServiceGetAddrInfoReply)
1539 (
1540 DNSServiceRef sdRef,
1541 DNSServiceFlags flags,
1542 uint32_t interfaceIndex,
1543 DNSServiceErrorType errorCode,
1544 const char *hostname,
1545 const struct sockaddr *address,
1546 uint32_t ttl,
1547 void *context
1548 );
1549
1550
1551 /* DNSServiceGetAddrInfo() Parameters:
1552 *
1553 * sdRef: A pointer to an uninitialized DNSServiceRef. If the call succeeds then it
1554 * initializes the DNSServiceRef, returns kDNSServiceErr_NoError, and the query
1555 * begins and will last indefinitely until the client terminates the query
1556 * by passing this DNSServiceRef to DNSServiceRefDeallocate().
1557 *
1558 * flags: kDNSServiceFlagsForceMulticast or kDNSServiceFlagsLongLivedQuery.
1559 * Pass kDNSServiceFlagsLongLivedQuery to create a "long-lived" unicast
1560 * query in a non-local domain. Without setting this flag, unicast queries
1561 * will be one-shot - that is, only answers available at the time of the call
1562 * will be returned. By setting this flag, answers (including Add and Remove
1563 * events) that become available after the initial call is made will generate
1564 * callbacks. This flag has no effect on link-local multicast queries.
1565 *
1566 * interfaceIndex: The interface on which to issue the query. Passing 0 causes the query to be
1567 * sent on all active interfaces via Multicast or the primary interface via Unicast.
1568 *
1569 * protocol: Pass in kDNSServiceProtocol_IPv4 to look up IPv4 addresses, or kDNSServiceProtocol_IPv6
1570 * to look up IPv6 addresses, or both to look up both kinds. If neither flag is
1571 * set, the system will apply an intelligent heuristic, which is (currently)
1572 * that it will attempt to look up both, except:
1573 *
1574 * * If "hostname" is a wide-area unicast DNS hostname (i.e. not a ".local." name)
1575 * but this host has no routable IPv6 address, then the call will not try to
1576 * look up IPv6 addresses for "hostname", since any addresses it found would be
1577 * unlikely to be of any use anyway. Similarly, if this host has no routable
1578 * IPv4 address, the call will not try to look up IPv4 addresses for "hostname".
1579 *
1580 * hostname: The fully qualified domain name of the host to be queried for.
1581 *
1582 * callBack: The function to be called when the query succeeds or fails asynchronously.
1583 *
1584 * context: An application context pointer which is passed to the callback function
1585 * (may be NULL).
1586 *
1587 * return value: Returns kDNSServiceErr_NoError on success (any subsequent, asynchronous
1588 * errors are delivered to the callback), otherwise returns an error code indicating
1589 * the error that occurred.
1590 */
1591
1592 DNSServiceErrorType DNSSD_API DNSServiceGetAddrInfo
1593 (
1594 DNSServiceRef *sdRef,
1595 DNSServiceFlags flags,
1596 uint32_t interfaceIndex,
1597 DNSServiceProtocol protocol,
1598 const char *hostname,
1599 DNSServiceGetAddrInfoReply callBack,
1600 void *context /* may be NULL */
1601 );
1602
1603
1604 /*********************************************************************************************
1605 *
1606 * Special Purpose Calls:
1607 * DNSServiceCreateConnection(), DNSServiceRegisterRecord(), DNSServiceReconfirmRecord()
1608 * (most applications will not use these)
1609 *
1610 *********************************************************************************************/
1611
1612 /* DNSServiceCreateConnection()
1613 *
1614 * Create a connection to the daemon allowing efficient registration of
1615 * multiple individual records.
1616 *
1617 * Parameters:
1618 *
1619 * sdRef: A pointer to an uninitialized DNSServiceRef. Deallocating
1620 * the reference (via DNSServiceRefDeallocate()) severs the
1621 * connection and deregisters all records registered on this connection.
1622 *
1623 * return value: Returns kDNSServiceErr_NoError on success, otherwise returns
1624 * an error code indicating the specific failure that occurred (in which
1625 * case the DNSServiceRef is not initialized).
1626 */
1627
1628 DNSServiceErrorType DNSSD_API DNSServiceCreateConnection(DNSServiceRef *sdRef);
1629
1630
1631 /* DNSServiceRegisterRecord
1632 *
1633 * Register an individual resource record on a connected DNSServiceRef.
1634 *
1635 * Note that name conflicts occurring for records registered via this call must be handled
1636 * by the client in the callback.
1637 *
1638 * DNSServiceRegisterRecordReply() parameters:
1639 *
1640 * sdRef: The connected DNSServiceRef initialized by
1641 * DNSServiceCreateConnection().
1642 *
1643 * RecordRef: The DNSRecordRef initialized by DNSServiceRegisterRecord(). If the above
1644 * DNSServiceRef is passed to DNSServiceRefDeallocate(), this DNSRecordRef is
1645 * invalidated, and may not be used further.
1646 *
1647 * flags: Currently unused, reserved for future use.
1648 *
1649 * errorCode: Will be kDNSServiceErr_NoError on success, otherwise will
1650 * indicate the failure that occurred (including name conflicts.)
1651 * Other parameters are undefined if errorCode is nonzero.
1652 *
1653 * context: The context pointer that was passed to the callout.
1654 *
1655 */
1656
1657 typedef void (DNSSD_API *DNSServiceRegisterRecordReply)
1658 (
1659 DNSServiceRef sdRef,
1660 DNSRecordRef RecordRef,
1661 DNSServiceFlags flags,
1662 DNSServiceErrorType errorCode,
1663 void *context
1664 );
1665
1666
1667 /* DNSServiceRegisterRecord() Parameters:
1668 *
1669 * sdRef: A DNSServiceRef initialized by DNSServiceCreateConnection().
1670 *
1671 * RecordRef: A pointer to an uninitialized DNSRecordRef. Upon succesfull completion of this
1672 * call, this ref may be passed to DNSServiceUpdateRecord() or DNSServiceRemoveRecord().
1673 * (To deregister ALL records registered on a single connected DNSServiceRef
1674 * and deallocate each of their corresponding DNSServiceRecordRefs, call
1675 * DNSServiceRefDeallocate()).
1676 *
1677 * flags: Possible values are kDNSServiceFlagsShared or kDNSServiceFlagsUnique
1678 * (see flag type definitions for details).
1679 *
1680 * interfaceIndex: If non-zero, specifies the interface on which to register the record
1681 * (the index for a given interface is determined via the if_nametoindex()
1682 * family of calls.) Passing 0 causes the record to be registered on all interfaces.
1683 * See "Constants for specifying an interface index" for more details.
1684 *
1685 * fullname: The full domain name of the resource record.
1686 *
1687 * rrtype: The numerical type of the resource record (e.g. kDNSServiceType_PTR, kDNSServiceType_SRV, etc)
1688 *
1689 * rrclass: The class of the resource record (usually kDNSServiceClass_IN)
1690 *
1691 * rdlen: Length, in bytes, of the rdata.
1692 *
1693 * rdata: A pointer to the raw rdata, as it is to appear in the DNS record.
1694 *
1695 * ttl: The time to live of the resource record, in seconds.
1696 * Most clients should pass 0 to indicate that the system should
1697 * select a sensible default value.
1698 *
1699 * callBack: The function to be called when a result is found, or if the call
1700 * asynchronously fails (e.g. because of a name conflict.)
1701 *
1702 * context: An application context pointer which is passed to the callback function
1703 * (may be NULL).
1704 *
1705 * return value: Returns kDNSServiceErr_NoError on success (any subsequent, asynchronous
1706 * errors are delivered to the callback), otherwise returns an error code indicating
1707 * the error that occurred (the callback is never invoked and the DNSRecordRef is
1708 * not initialized).
1709 */
1710
1711 DNSServiceErrorType DNSSD_API DNSServiceRegisterRecord
1712 (
1713 DNSServiceRef sdRef,
1714 DNSRecordRef *RecordRef,
1715 DNSServiceFlags flags,
1716 uint32_t interfaceIndex,
1717 const char *fullname,
1718 uint16_t rrtype,
1719 uint16_t rrclass,
1720 uint16_t rdlen,
1721 const void *rdata,
1722 uint32_t ttl,
1723 DNSServiceRegisterRecordReply callBack,
1724 void *context /* may be NULL */
1725 );
1726
1727
1728 /* DNSServiceReconfirmRecord
1729 *
1730 * Instruct the daemon to verify the validity of a resource record that appears
1731 * to be out of date (e.g. because TCP connection to a service's target failed.)
1732 * Causes the record to be flushed from the daemon's cache (as well as all other
1733 * daemons' caches on the network) if the record is determined to be invalid.
1734 * Use this routine conservatively. Reconfirming a record necessarily consumes
1735 * network bandwidth, so this should not be done indiscriminately.
1736 *
1737 * Parameters:
1738 *
1739 * flags: Pass kDNSServiceFlagsForce to force immediate deletion of record,
1740 * instead of after some number of reconfirmation queries have gone unanswered.
1741 *
1742 * interfaceIndex: Specifies the interface of the record in question.
1743 * The caller must specify the interface.
1744 * This API (by design) causes increased network traffic, so it requires
1745 * the caller to be precise about which record should be reconfirmed.
1746 * It is not possible to pass zero for the interface index to perform
1747 * a "wildcard" reconfirmation, where *all* matching records are reconfirmed.
1748 *
1749 * fullname: The resource record's full domain name.
1750 *
1751 * rrtype: The resource record's type (e.g. kDNSServiceType_PTR, kDNSServiceType_SRV, etc)
1752 *
1753 * rrclass: The class of the resource record (usually kDNSServiceClass_IN).
1754 *
1755 * rdlen: The length, in bytes, of the resource record rdata.
1756 *
1757 * rdata: The raw rdata of the resource record.
1758 *
1759 */
1760
1761 DNSServiceErrorType DNSSD_API DNSServiceReconfirmRecord
1762 (
1763 DNSServiceFlags flags,
1764 uint32_t interfaceIndex,
1765 const char *fullname,
1766 uint16_t rrtype,
1767 uint16_t rrclass,
1768 uint16_t rdlen,
1769 const void *rdata
1770 );
1771
1772
1773 /*********************************************************************************************
1774 *
1775 * NAT Port Mapping
1776 *
1777 *********************************************************************************************/
1778
1779 /* DNSServiceNATPortMappingCreate
1780 *
1781 * Request a port mapping in the NAT gateway, which maps a port on the local machine
1782 * to an external port on the NAT. The NAT should support either the NAT-PMP or the UPnP IGD
1783 * protocol for this API to create a successful mapping.
1784 *
1785 * The port mapping will be renewed indefinitely until the client process exits, or
1786 * explicitly terminates the port mapping request by calling DNSServiceRefDeallocate().
1787 * The client callback will be invoked, informing the client of the NAT gateway's
1788 * external IP address and the external port that has been allocated for this client.
1789 * The client should then record this external IP address and port using whatever
1790 * directory service mechanism it is using to enable peers to connect to it.
1791 * (Clients advertising services using Wide-Area DNS-SD DO NOT need to use this API
1792 * -- when a client calls DNSServiceRegister() NAT mappings are automatically created
1793 * and the external IP address and port for the service are recorded in the global DNS.
1794 * Only clients using some directory mechanism other than Wide-Area DNS-SD need to use
1795 * this API to explicitly map their own ports.)
1796 *
1797 * It's possible that the client callback could be called multiple times, for example
1798 * if the NAT gateway's IP address changes, or if a configuration change results in a
1799 * different external port being mapped for this client. Over the lifetime of any long-lived
1800 * port mapping, the client should be prepared to handle these notifications of changes
1801 * in the environment, and should update its recorded address and/or port as appropriate.
1802 *
1803 * NOTE: There are two unusual aspects of how the DNSServiceNATPortMappingCreate API works,
1804 * which were intentionally designed to help simplify client code:
1805 *
1806 * 1. It's not an error to request a NAT mapping when the machine is not behind a NAT gateway.
1807 * In other NAT mapping APIs, if you request a NAT mapping and the machine is not behind a NAT
1808 * gateway, then the API returns an error code -- it can't get you a NAT mapping if there's no
1809 * NAT gateway. The DNSServiceNATPortMappingCreate API takes a different view. Working out
1810 * whether or not you need a NAT mapping can be tricky and non-obvious, particularly on
1811 * a machine with multiple active network interfaces. Rather than make every client recreate
1812 * this logic for deciding whether a NAT mapping is required, the PortMapping API does that
1813 * work for you. If the client calls the PortMapping API when the machine already has a
1814 * routable public IP address, then instead of complaining about it and giving an error,
1815 * the PortMapping API just invokes your callback, giving the machine's public address
1816 * and your own port number. This means you don't need to write code to work out whether
1817 * your client needs to call the PortMapping API -- just call it anyway, and if it wasn't
1818 * necessary, no harm is done:
1819 *
1820 * - If the machine already has a routable public IP address, then your callback
1821 * will just be invoked giving your own address and port.
1822 * - If a NAT mapping is required and obtained, then your callback will be invoked
1823 * giving you the external address and port.
1824 * - If a NAT mapping is required but not obtained from the local NAT gateway,
1825 * or the machine has no network connectivity, then your callback will be
1826 * invoked giving zero address and port.
1827 *
1828 * 2. In other NAT mapping APIs, if a laptop computer is put to sleep and woken up on a new
1829 * network, it's the client's job to notice this, and work out whether a NAT mapping
1830 * is required on the new network, and make a new NAT mapping request if necessary.
1831 * The DNSServiceNATPortMappingCreate API does this for you, automatically.
1832 * The client just needs to make one call to the PortMapping API, and its callback will
1833 * be invoked any time the mapping state changes. This property complements point (1) above.
1834 * If the client didn't make a NAT mapping request just because it determined that one was
1835 * not required at that particular moment in time, the client would then have to monitor
1836 * for network state changes to determine if a NAT port mapping later became necessary.
1837 * By unconditionally making a NAT mapping request, even when a NAT mapping not to be
1838 * necessary, the PortMapping API will then begin monitoring network state changes on behalf of
1839 * the client, and if a NAT mapping later becomes necessary, it will automatically create a NAT
1840 * mapping and inform the client with a new callback giving the new address and port information.
1841 *
1842 * DNSServiceNATPortMappingReply() parameters:
1843 *
1844 * sdRef: The DNSServiceRef initialized by DNSServiceNATPortMappingCreate().
1845 *
1846 * flags: Currently unused, reserved for future use.
1847 *
1848 * interfaceIndex: The interface through which the NAT gateway is reached.
1849 *
1850 * errorCode: Will be kDNSServiceErr_NoError on success.
1851 * Will be kDNSServiceErr_DoubleNAT when the NAT gateway is itself behind one or
1852 * more layers of NAT, in which case the other parameters have the defined values.
1853 * For other failures, will indicate the failure that occurred, and the other
1854 * parameters are undefined.
1855 *
1856 * externalAddress: Four byte IPv4 address in network byte order.
1857 *
1858 * protocol: Will be kDNSServiceProtocol_UDP or kDNSServiceProtocol_TCP or both.
1859 *
1860 * internalPort: The port on the local machine that was mapped.
1861 *
1862 * externalPort: The actual external port in the NAT gateway that was mapped.
1863 * This is likely to be different than the requested external port.
1864 *
1865 * ttl: The lifetime of the NAT port mapping created on the gateway.
1866 * This controls how quickly stale mappings will be garbage-collected
1867 * if the client machine crashes, suffers a power failure, is disconnected
1868 * from the network, or suffers some other unfortunate demise which
1869 * causes it to vanish without explicitly removing its NAT port mapping.
1870 * It's possible that the ttl value will differ from the requested ttl value.
1871 *
1872 * context: The context pointer that was passed to the callout.
1873 *
1874 */
1875
1876 typedef void (DNSSD_API *DNSServiceNATPortMappingReply)
1877 (
1878 DNSServiceRef sdRef,
1879 DNSServiceFlags flags,
1880 uint32_t interfaceIndex,
1881 DNSServiceErrorType errorCode,
1882 uint32_t externalAddress, /* four byte IPv4 address in network byte order */
1883 DNSServiceProtocol protocol,
1884 uint16_t internalPort, /* In network byte order */
1885 uint16_t externalPort, /* In network byte order and may be different than the requested port */
1886 uint32_t ttl, /* may be different than the requested ttl */
1887 void *context
1888 );
1889
1890
1891 /* DNSServiceNATPortMappingCreate() Parameters:
1892 *
1893 * sdRef: A pointer to an uninitialized DNSServiceRef. If the call succeeds then it
1894 * initializes the DNSServiceRef, returns kDNSServiceErr_NoError, and the nat
1895 * port mapping will last indefinitely until the client terminates the port
1896 * mapping request by passing this DNSServiceRef to DNSServiceRefDeallocate().
1897 *
1898 * flags: Currently ignored, reserved for future use.
1899 *
1900 * interfaceIndex: The interface on which to create port mappings in a NAT gateway. Passing 0 causes
1901 * the port mapping request to be sent on the primary interface.
1902 *
1903 * protocol: To request a port mapping, pass in kDNSServiceProtocol_UDP, or kDNSServiceProtocol_TCP,
1904 * or (kDNSServiceProtocol_UDP | kDNSServiceProtocol_TCP) to map both.
1905 * The local listening port number must also be specified in the internalPort parameter.
1906 * To just discover the NAT gateway's external IP address, pass zero for protocol,
1907 * internalPort, externalPort and ttl.
1908 *
1909 * internalPort: The port number in network byte order on the local machine which is listening for packets.
1910 *
1911 * externalPort: The requested external port in network byte order in the NAT gateway that you would
1912 * like to map to the internal port. Pass 0 if you don't care which external port is chosen for you.
1913 *
1914 * ttl: The requested renewal period of the NAT port mapping, in seconds.
1915 * If the client machine crashes, suffers a power failure, is disconnected from
1916 * the network, or suffers some other unfortunate demise which causes it to vanish
1917 * unexpectedly without explicitly removing its NAT port mappings, then the NAT gateway
1918 * will garbage-collect old stale NAT port mappings when their lifetime expires.
1919 * Requesting a short TTL causes such orphaned mappings to be garbage-collected
1920 * more promptly, but consumes system resources and network bandwidth with
1921 * frequent renewal packets to keep the mapping from expiring.
1922 * Requesting a long TTL is more efficient on the network, but in the event of the
1923 * client vanishing, stale NAT port mappings will not be garbage-collected as quickly.
1924 * Most clients should pass 0 to use a system-wide default value.
1925 *
1926 * callBack: The function to be called when the port mapping request succeeds or fails asynchronously.
1927 *
1928 * context: An application context pointer which is passed to the callback function
1929 * (may be NULL).
1930 *
1931 * return value: Returns kDNSServiceErr_NoError on success (any subsequent, asynchronous
1932 * errors are delivered to the callback), otherwise returns an error code indicating
1933 * the error that occurred.
1934 *
1935 * If you don't actually want a port mapped, and are just calling the API
1936 * because you want to find out the NAT's external IP address (e.g. for UI
1937 * display) then pass zero for protocol, internalPort, externalPort and ttl.
1938 */
1939
1940 DNSServiceErrorType DNSSD_API DNSServiceNATPortMappingCreate
1941 (
1942 DNSServiceRef *sdRef,
1943 DNSServiceFlags flags,
1944 uint32_t interfaceIndex,
1945 DNSServiceProtocol protocol, /* TCP and/or UDP */
1946 uint16_t internalPort, /* network byte order */
1947 uint16_t externalPort, /* network byte order */
1948 uint32_t ttl, /* time to live in seconds */
1949 DNSServiceNATPortMappingReply callBack,
1950 void *context /* may be NULL */
1951 );
1952
1953
1954 /*********************************************************************************************
1955 *
1956 * General Utility Functions
1957 *
1958 *********************************************************************************************/
1959
1960 /* DNSServiceConstructFullName()
1961 *
1962 * Concatenate a three-part domain name (as returned by the above callbacks) into a
1963 * properly-escaped full domain name. Note that callbacks in the above functions ALREADY ESCAPE
1964 * strings where necessary.
1965 *
1966 * Parameters:
1967 *
1968 * fullName: A pointer to a buffer that where the resulting full domain name is to be written.
1969 * The buffer must be kDNSServiceMaxDomainName (1009) bytes in length to
1970 * accommodate the longest legal domain name without buffer overrun.
1971 *
1972 * service: The service name - any dots or backslashes must NOT be escaped.
1973 * May be NULL (to construct a PTR record name, e.g.
1974 * "_ftp._tcp.apple.com.").
1975 *
1976 * regtype: The service type followed by the protocol, separated by a dot
1977 * (e.g. "_ftp._tcp").
1978 *
1979 * domain: The domain name, e.g. "apple.com.". Literal dots or backslashes,
1980 * if any, must be escaped, e.g. "1st\. Floor.apple.com."
1981 *
1982 * return value: Returns kDNSServiceErr_NoError (0) on success, kDNSServiceErr_BadParam on error.
1983 *
1984 */
1985
1986 DNSServiceErrorType DNSSD_API DNSServiceConstructFullName
1987 (
1988 char * const fullName,
1989 const char * const service, /* may be NULL */
1990 const char * const regtype,
1991 const char * const domain
1992 );
1993
1994
1995 /*********************************************************************************************
1996 *
1997 * TXT Record Construction Functions
1998 *
1999 *********************************************************************************************/
2000
2001 /*
2002 * A typical calling sequence for TXT record construction is something like:
2003 *
2004 * Client allocates storage for TXTRecord data (e.g. declare buffer on the stack)
2005 * TXTRecordCreate();
2006 * TXTRecordSetValue();
2007 * TXTRecordSetValue();
2008 * TXTRecordSetValue();
2009 * ...
2010 * DNSServiceRegister( ... TXTRecordGetLength(), TXTRecordGetBytesPtr() ... );
2011 * TXTRecordDeallocate();
2012 * Explicitly deallocate storage for TXTRecord data (if not allocated on the stack)
2013 */
2014
2015
2016 /* TXTRecordRef
2017 *
2018 * Opaque internal data type.
2019 * Note: Represents a DNS-SD TXT record.
2020 */
2021
2022 typedef union _TXTRecordRef_t { char PrivateData[16]; char *ForceNaturalAlignment; } TXTRecordRef;
2023
2024
2025 /* TXTRecordCreate()
2026 *
2027 * Creates a new empty TXTRecordRef referencing the specified storage.
2028 *
2029 * If the buffer parameter is NULL, or the specified storage size is not
2030 * large enough to hold a key subsequently added using TXTRecordSetValue(),
2031 * then additional memory will be added as needed using malloc().
2032 *
2033 * On some platforms, when memory is low, malloc() may fail. In this
2034 * case, TXTRecordSetValue() will return kDNSServiceErr_NoMemory, and this
2035 * error condition will need to be handled as appropriate by the caller.
2036 *
2037 * You can avoid the need to handle this error condition if you ensure
2038 * that the storage you initially provide is large enough to hold all
2039 * the key/value pairs that are to be added to the record.
2040 * The caller can precompute the exact length required for all of the
2041 * key/value pairs to be added, or simply provide a fixed-sized buffer
2042 * known in advance to be large enough.
2043 * A no-value (key-only) key requires (1 + key length) bytes.
2044 * A key with empty value requires (1 + key length + 1) bytes.
2045 * A key with non-empty value requires (1 + key length + 1 + value length).
2046 * For most applications, DNS-SD TXT records are generally
2047 * less than 100 bytes, so in most cases a simple fixed-sized
2048 * 256-byte buffer will be more than sufficient.
2049 * Recommended size limits for DNS-SD TXT Records are discussed in
2050 * <http://files.dns-sd.org/draft-cheshire-dnsext-dns-sd.txt>
2051 *
2052 * Note: When passing parameters to and from these TXT record APIs,
2053 * the key name does not include the '=' character. The '=' character
2054 * is the separator between the key and value in the on-the-wire
2055 * packet format; it is not part of either the key or the value.
2056 *
2057 * txtRecord: A pointer to an uninitialized TXTRecordRef.
2058 *
2059 * bufferLen: The size of the storage provided in the "buffer" parameter.
2060 *
2061 * buffer: Optional caller-supplied storage used to hold the TXTRecord data.
2062 * This storage must remain valid for as long as
2063 * the TXTRecordRef.
2064 */
2065
2066 void DNSSD_API TXTRecordCreate
2067 (
2068 TXTRecordRef *txtRecord,
2069 uint16_t bufferLen,
2070 void *buffer
2071 );
2072
2073
2074 /* TXTRecordDeallocate()
2075 *
2076 * Releases any resources allocated in the course of preparing a TXT Record
2077 * using TXTRecordCreate()/TXTRecordSetValue()/TXTRecordRemoveValue().
2078 * Ownership of the buffer provided in TXTRecordCreate() returns to the client.
2079 *
2080 * txtRecord: A TXTRecordRef initialized by calling TXTRecordCreate().
2081 *
2082 */
2083
2084 void DNSSD_API TXTRecordDeallocate
2085 (
2086 TXTRecordRef *txtRecord
2087 );
2088
2089
2090 /* TXTRecordSetValue()
2091 *
2092 * Adds a key (optionally with value) to a TXTRecordRef. If the "key" already
2093 * exists in the TXTRecordRef, then the current value will be replaced with
2094 * the new value.
2095 * Keys may exist in four states with respect to a given TXT record:
2096 * - Absent (key does not appear at all)
2097 * - Present with no value ("key" appears alone)
2098 * - Present with empty value ("key=" appears in TXT record)
2099 * - Present with non-empty value ("key=value" appears in TXT record)
2100 * For more details refer to "Data Syntax for DNS-SD TXT Records" in
2101 * <http://files.dns-sd.org/draft-cheshire-dnsext-dns-sd.txt>
2102 *
2103 * txtRecord: A TXTRecordRef initialized by calling TXTRecordCreate().
2104 *
2105 * key: A null-terminated string which only contains printable ASCII
2106 * values (0x20-0x7E), excluding '=' (0x3D). Keys should be
2107 * 9 characters or fewer (not counting the terminating null).
2108 *
2109 * valueSize: The size of the value.
2110 *
2111 * value: Any binary value. For values that represent
2112 * textual data, UTF-8 is STRONGLY recommended.
2113 * For values that represent textual data, valueSize
2114 * should NOT include the terminating null (if any)
2115 * at the end of the string.
2116 * If NULL, then "key" will be added with no value.
2117 * If non-NULL but valueSize is zero, then "key=" will be
2118 * added with empty value.
2119 *
2120 * return value: Returns kDNSServiceErr_NoError on success.
2121 * Returns kDNSServiceErr_Invalid if the "key" string contains
2122 * illegal characters.
2123 * Returns kDNSServiceErr_NoMemory if adding this key would
2124 * exceed the available storage.
2125 */
2126
2127 DNSServiceErrorType DNSSD_API TXTRecordSetValue
2128 (
2129 TXTRecordRef *txtRecord,
2130 const char *key,
2131 uint8_t valueSize, /* may be zero */
2132 const void *value /* may be NULL */
2133 );
2134
2135
2136 /* TXTRecordRemoveValue()
2137 *
2138 * Removes a key from a TXTRecordRef. The "key" must be an
2139 * ASCII string which exists in the TXTRecordRef.
2140 *
2141 * txtRecord: A TXTRecordRef initialized by calling TXTRecordCreate().
2142 *
2143 * key: A key name which exists in the TXTRecordRef.
2144 *
2145 * return value: Returns kDNSServiceErr_NoError on success.
2146 * Returns kDNSServiceErr_NoSuchKey if the "key" does not
2147 * exist in the TXTRecordRef.
2148 */
2149
2150 DNSServiceErrorType DNSSD_API TXTRecordRemoveValue
2151 (
2152 TXTRecordRef *txtRecord,
2153 const char *key
2154 );
2155
2156
2157 /* TXTRecordGetLength()
2158 *
2159 * Allows you to determine the length of the raw bytes within a TXTRecordRef.
2160 *
2161 * txtRecord: A TXTRecordRef initialized by calling TXTRecordCreate().
2162 *
2163 * return value: Returns the size of the raw bytes inside a TXTRecordRef
2164 * which you can pass directly to DNSServiceRegister() or
2165 * to DNSServiceUpdateRecord().
2166 * Returns 0 if the TXTRecordRef is empty.
2167 */
2168
2169 uint16_t DNSSD_API TXTRecordGetLength
2170 (
2171 const TXTRecordRef *txtRecord
2172 );
2173
2174
2175 /* TXTRecordGetBytesPtr()
2176 *
2177 * Allows you to retrieve a pointer to the raw bytes within a TXTRecordRef.
2178 *
2179 * txtRecord: A TXTRecordRef initialized by calling TXTRecordCreate().
2180 *
2181 * return value: Returns a pointer to the raw bytes inside the TXTRecordRef
2182 * which you can pass directly to DNSServiceRegister() or
2183 * to DNSServiceUpdateRecord().
2184 */
2185
2186 const void * DNSSD_API TXTRecordGetBytesPtr
2187 (
2188 const TXTRecordRef *txtRecord
2189 );
2190
2191
2192 /*********************************************************************************************
2193 *
2194 * TXT Record Parsing Functions
2195 *
2196 *********************************************************************************************/
2197
2198 /*
2199 * A typical calling sequence for TXT record parsing is something like:
2200 *
2201 * Receive TXT record data in DNSServiceResolve() callback
2202 * if (TXTRecordContainsKey(txtLen, txtRecord, "key")) then do something
2203 * val1ptr = TXTRecordGetValuePtr(txtLen, txtRecord, "key1", &len1);
2204 * val2ptr = TXTRecordGetValuePtr(txtLen, txtRecord, "key2", &len2);
2205 * ...
2206 * memcpy(myval1, val1ptr, len1);
2207 * memcpy(myval2, val2ptr, len2);
2208 * ...
2209 * return;
2210 *
2211 * If you wish to retain the values after return from the DNSServiceResolve()
2212 * callback, then you need to copy the data to your own storage using memcpy()
2213 * or similar, as shown in the example above.
2214 *
2215 * If for some reason you need to parse a TXT record you built yourself
2216 * using the TXT record construction functions above, then you can do
2217 * that using TXTRecordGetLength and TXTRecordGetBytesPtr calls:
2218 * TXTRecordGetValue(TXTRecordGetLength(x), TXTRecordGetBytesPtr(x), key, &len);
2219 *
2220 * Most applications only fetch keys they know about from a TXT record and
2221 * ignore the rest.
2222 * However, some debugging tools wish to fetch and display all keys.
2223 * To do that, use the TXTRecordGetCount() and TXTRecordGetItemAtIndex() calls.
2224 */
2225
2226 /* TXTRecordContainsKey()
2227 *
2228 * Allows you to determine if a given TXT Record contains a specified key.
2229 *
2230 * txtLen: The size of the received TXT Record.
2231 *
2232 * txtRecord: Pointer to the received TXT Record bytes.
2233 *
2234 * key: A null-terminated ASCII string containing the key name.
2235 *
2236 * return value: Returns 1 if the TXT Record contains the specified key.
2237 * Otherwise, it returns 0.
2238 */
2239
2240 int DNSSD_API TXTRecordContainsKey
2241 (
2242 uint16_t txtLen,
2243 const void *txtRecord,
2244 const char *key
2245 );
2246
2247
2248 /* TXTRecordGetValuePtr()
2249 *
2250 * Allows you to retrieve the value for a given key from a TXT Record.
2251 *
2252 * txtLen: The size of the received TXT Record
2253 *
2254 * txtRecord: Pointer to the received TXT Record bytes.
2255 *
2256 * key: A null-terminated ASCII string containing the key name.
2257 *
2258 * valueLen: On output, will be set to the size of the "value" data.
2259 *
2260 * return value: Returns NULL if the key does not exist in this TXT record,
2261 * or exists with no value (to differentiate between
2262 * these two cases use TXTRecordContainsKey()).
2263 * Returns pointer to location within TXT Record bytes
2264 * if the key exists with empty or non-empty value.
2265 * For empty value, valueLen will be zero.
2266 * For non-empty value, valueLen will be length of value data.
2267 */
2268
2269 const void * DNSSD_API TXTRecordGetValuePtr
2270 (
2271 uint16_t txtLen,
2272 const void *txtRecord,
2273 const char *key,
2274 uint8_t *valueLen
2275 );
2276
2277
2278 /* TXTRecordGetCount()
2279 *
2280 * Returns the number of keys stored in the TXT Record. The count
2281 * can be used with TXTRecordGetItemAtIndex() to iterate through the keys.
2282 *
2283 * txtLen: The size of the received TXT Record.
2284 *
2285 * txtRecord: Pointer to the received TXT Record bytes.
2286 *
2287 * return value: Returns the total number of keys in the TXT Record.
2288 *
2289 */
2290
2291 uint16_t DNSSD_API TXTRecordGetCount
2292 (
2293 uint16_t txtLen,
2294 const void *txtRecord
2295 );
2296
2297
2298 /* TXTRecordGetItemAtIndex()
2299 *
2300 * Allows you to retrieve a key name and value pointer, given an index into
2301 * a TXT Record. Legal index values range from zero to TXTRecordGetCount()-1.
2302 * It's also possible to iterate through keys in a TXT record by simply
2303 * calling TXTRecordGetItemAtIndex() repeatedly, beginning with index zero
2304 * and increasing until TXTRecordGetItemAtIndex() returns kDNSServiceErr_Invalid.
2305 *
2306 * On return:
2307 * For keys with no value, *value is set to NULL and *valueLen is zero.
2308 * For keys with empty value, *value is non-NULL and *valueLen is zero.
2309 * For keys with non-empty value, *value is non-NULL and *valueLen is non-zero.
2310 *
2311 * txtLen: The size of the received TXT Record.
2312 *
2313 * txtRecord: Pointer to the received TXT Record bytes.
2314 *
2315 * itemIndex: An index into the TXT Record.
2316 *
2317 * keyBufLen: The size of the string buffer being supplied.
2318 *
2319 * key: A string buffer used to store the key name.
2320 * On return, the buffer contains a null-terminated C string
2321 * giving the key name. DNS-SD TXT keys are usually
2322 * 9 characters or fewer. To hold the maximum possible
2323 * key name, the buffer should be 256 bytes long.
2324 *
2325 * valueLen: On output, will be set to the size of the "value" data.
2326 *
2327 * value: On output, *value is set to point to location within TXT
2328 * Record bytes that holds the value data.
2329 *
2330 * return value: Returns kDNSServiceErr_NoError on success.
2331 * Returns kDNSServiceErr_NoMemory if keyBufLen is too short.
2332 * Returns kDNSServiceErr_Invalid if index is greater than
2333 * TXTRecordGetCount()-1.
2334 */
2335
2336 DNSServiceErrorType DNSSD_API TXTRecordGetItemAtIndex
2337 (
2338 uint16_t txtLen,
2339 const void *txtRecord,
2340 uint16_t itemIndex,
2341 uint16_t keyBufLen,
2342 char *key,
2343 uint8_t *valueLen,
2344 const void **value
2345 );
2346
2347 #if _DNS_SD_LIBDISPATCH
2348 /*
2349 * DNSServiceSetDispatchQueue
2350 *
2351 * Allows you to schedule a DNSServiceRef on a serial dispatch queue for receiving asynchronous
2352 * callbacks. It's the clients responsibility to ensure that the provided dispatch queue is running.
2353 *
2354 * A typical application that uses CFRunLoopRun or dispatch_main on its main thread will
2355 * usually schedule DNSServiceRefs on its main queue (which is always a serial queue)
2356 * using "DNSServiceSetDispatchQueue(sdref, dispatch_get_main_queue());"
2357 *
2358 * If there is any error during the processing of events, the application callback will
2359 * be called with an error code. For shared connections, each subordinate DNSServiceRef
2360 * will get its own error callback. Currently these error callbacks only happen
2361 * if the mDNSResponder daemon is manually terminated or crashes, and the error
2362 * code in this case is kDNSServiceErr_ServiceNotRunning. The application must call
2363 * DNSServiceRefDeallocate to free the DNSServiceRef when it gets such an error code.
2364 * These error callbacks are rare and should not normally happen on customer machines,
2365 * but application code should be written defensively to handle such error callbacks
2366 * gracefully if they occur.
2367 *
2368 * After using DNSServiceSetDispatchQueue on a DNSServiceRef, calling DNSServiceProcessResult
2369 * on the same DNSServiceRef will result in undefined behavior and should be avoided.
2370 *
2371 * Once the application successfully schedules a DNSServiceRef on a serial dispatch queue using
2372 * DNSServiceSetDispatchQueue, it cannot remove the DNSServiceRef from the dispatch queue, or use
2373 * DNSServiceSetDispatchQueue a second time to schedule the DNSServiceRef onto a different serial dispatch
2374 * queue. Once scheduled onto a dispatch queue a DNSServiceRef will deliver events to that queue until
2375 * the application no longer requires that operation and terminates it using DNSServiceRefDeallocate.
2376 *
2377 * service: DNSServiceRef that was allocated and returned to the application, when the
2378 * application calls one of the DNSService API.
2379 *
2380 * queue: dispatch queue where the application callback will be scheduled
2381 *
2382 * return value: Returns kDNSServiceErr_NoError on success.
2383 * Returns kDNSServiceErr_NoMemory if it cannot create a dispatch source
2384 * Returns kDNSServiceErr_BadParam if the service param is invalid or the
2385 * queue param is invalid
2386 */
2387
2388 DNSServiceErrorType DNSSD_API DNSServiceSetDispatchQueue
2389 (
2390 DNSServiceRef service,
2391 dispatch_queue_t queue
2392 );
2393 #endif //_DNS_SD_LIBDISPATCH
2394
2395 #ifdef __APPLE_API_PRIVATE
2396
2397 #define kDNSServiceCompPrivateDNS "PrivateDNS"
2398 #define kDNSServiceCompMulticastDNS "MulticastDNS"
2399
2400 #endif //__APPLE_API_PRIVATE
2401
2402 /* Some C compiler cleverness. We can make the compiler check certain things for us,
2403 * and report errors at compile-time if anything is wrong. The usual way to do this would
2404 * be to use a run-time "if" statement or the conventional run-time "assert" mechanism, but
2405 * then you don't find out what's wrong until you run the software. This way, if the assertion
2406 * condition is false, the array size is negative, and the complier complains immediately.
2407 */
2408
2409 struct CompileTimeAssertionChecks_DNS_SD
2410 {
2411 char assert0[(sizeof(union _TXTRecordRef_t) == 16) ? 1 : -1];
2412 };
2413
2414 #ifdef __cplusplus
2415 }
2416 #endif
2417
2418 #endif /* _DNS_SD_H */