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