Multicast DNS#

This module includes APIs for Multicast DNS (mDNS).

The mDNS APIs are available when the mDNS support OPENTHREAD_CONFIG_MULTICAST_DNS_ENABLE is enabled and the OPENTHREAD_CONFIG_MULTICAST_DNS_PUBLIC_API_ENABLE is also enabled.

Modules#

otMdnsBrowser

otMdnsBrowseResult

otMdnsSrvResolver

otMdnsSrvResult

otMdnsTxtResolver

otMdnsTxtResult

otMdnsAddressResolver

otMdnsAddressAndTtl

otMdnsAddressResult

Enumerations#

enum
OT_MDNS_ENTRY_STATE_PROBING
OT_MDNS_ENTRY_STATE_REGISTERED
OT_MDNS_ENTRY_STATE_CONFLICT
OT_MDNS_ENTRY_STATE_REMOVING
}

Represents a host/service/key entry state.

Typedefs#

Represents a request ID (uint32_t value) for registering a host, a service, or a key service.

Represents the callback function to report the outcome of a host, service, or key registration request.

typedef void(*
otMdnsConflictCallback)(otInstance *aInstance, const char *aName, const char *aServiceType)

Represents the callback function to report a detected name conflict after successful registration of an entry.

Represents an mDNS host.

Represents an mDNS service.

Represents an mDNS key record.

typedef struct otMdnsIterator

Represents an mDNS entry iterator.

typedef enum otMdnsEntryState

Represents a host/service/key entry state.

typedef void(*
otMdnsBrowseCallback)(otInstance *aInstance, const otMdnsBrowseResult *aResult)

Represents the callback function used to report a browse result.

typedef void(*
otMdnsSrvCallback)(otInstance *aInstance, const otMdnsSrvResult *aResult)

Represents the callback function used to report an SRV resolve result.

typedef void(*
otMdnsTxtCallback)(otInstance *aInstance, const otMdnsTxtResult *aResult)

Represents the callback function used to report a TXT resolve result.

typedef void(*
otMdnsAddressCallback)(otInstance *aInstance, const otMdnsAddressResult *aResult)

Represents the callback function use to report a IPv6/IPv4 address resolve result.

typedef struct otMdnsBrowser

Represents a service browser.

typedef struct otMdnsSrvResolver

Represents an SRV service resolver.

typedef struct otMdnsTxtResolver

Represents a TXT service resolver.

typedef struct otMdnsAddressResolver

Represents an address resolver.

typedef struct otMdnsAddressAndTtl

Represents a discovered host address and its TTL.

Functions#

otMdnsSetEnabled(otInstance *aInstance, bool aEnable, uint32_t aInfraIfIndex)

Enables or disables the mDNS module.

bool
otMdnsIsEnabled(otInstance *aInstance)

Indicates whether the mDNS module is enabled.

void
otMdnsSetQuestionUnicastAllowed(otInstance *aInstance, bool aAllow)

Sets whether the mDNS module is allowed to send questions requesting unicast responses referred to as "QU" questions.

bool
otMdnsIsQuestionUnicastAllowed(otInstance *aInstance)

Indicates whether mDNS module is allowed to send "QU" questions requesting unicast response.

void
otMdnsSetConflictCallback(otInstance *aInstance, otMdnsConflictCallback aCallback)

Sets the post-registration conflict callback.

otMdnsRegisterHost(otInstance *aInstance, const otMdnsHost *aHost, otMdnsRequestId aRequestId, otMdnsRegisterCallback aCallback)

Registers or updates a host on mDNS.

otMdnsUnregisterHost(otInstance *aInstance, const otMdnsHost *aHost)

Unregisters a host on mDNS.

otMdnsRegisterService(otInstance *aInstance, const otMdnsService *aService, otMdnsRequestId aRequestId, otMdnsRegisterCallback aCallback)

Registers or updates a service on mDNS.

otMdnsUnregisterService(otInstance *aInstance, const otMdnsService *aService)

Unregisters a service on mDNS module.

otMdnsRegisterKey(otInstance *aInstance, const otMdnsKey *aKey, otMdnsRequestId aRequestId, otMdnsRegisterCallback aCallback)

Registers or updates a key record on mDNS module.

otMdnsUnregisterKey(otInstance *aInstance, const otMdnsKey *aKey)

Unregisters a key record on mDNS.

otMdnsAllocateIterator(otInstance *aInstance)

Allocates a new iterator.

void
otMdnsFreeIterator(otInstance *aInstance, otMdnsIterator *aIterator)

Frees a previously allocated iterator.

otMdnsGetNextHost(otInstance *aInstance, otMdnsIterator *aIterator, otMdnsHost *aHost, otMdnsEntryState *aState)

Iterates over registered host entries.

otMdnsGetNextService(otInstance *aInstance, otMdnsIterator *aIterator, otMdnsService *aService, otMdnsEntryState *aState)

Iterates over registered service entries.

otMdnsGetNextKey(otInstance *aInstance, otMdnsIterator *aIterator, otMdnsKey *aKey, otMdnsEntryState *aState)

Iterates over registered key entries.

otMdnsStartBrowser(otInstance *aInstance, const otMdnsBrowser *aBrowser)

Starts a service browser.

otMdnsStopBrowser(otInstance *aInstance, const otMdnsBrowser *aBroswer)

Stops a service browser.

otMdnsStartSrvResolver(otInstance *aInstance, const otMdnsSrvResolver *aResolver)

Starts an SRV record resolver.

otMdnsStopSrvResolver(otInstance *aInstance, const otMdnsSrvResolver *aResolver)

Stops an SRV record resolver.

otMdnsStartTxtResolver(otInstance *aInstance, const otMdnsTxtResolver *aResolver)

Starts a TXT record resolver.

otMdnsStopTxtResolver(otInstance *aInstance, const otMdnsTxtResolver *aResolver)

Stops a TXT record resolver.

otMdnsStartIp6AddressResolver(otInstance *aInstance, const otMdnsAddressResolver *aResolver)

Starts an IPv6 address resolver.

otMdnsStopIp6AddressResolver(otInstance *aInstance, const otMdnsAddressResolver *aResolver)

Stops an IPv6 address resolver.

otMdnsStartIp4AddressResolver(otInstance *aInstance, const otMdnsAddressResolver *aResolver)

Starts an IPv4 address resolver.

otMdnsStopIp4AddressResolver(otInstance *aInstance, const otMdnsAddressResolver *aResolver)

Stops an IPv4 address resolver.

Enumeration Documentation#

otMdnsEntryState#

otMdnsEntryState

Represents a host/service/key entry state.

Enumerator
OT_MDNS_ENTRY_STATE_PROBING

Probing to claim the name.

OT_MDNS_ENTRY_STATE_REGISTERED

Entry is successfully registered.

OT_MDNS_ENTRY_STATE_CONFLICT

Name conflict was detected.

OT_MDNS_ENTRY_STATE_REMOVING

Entry is being removed (sending "goodbye" announcements).


Definition at line 146 of file include/openthread/mdns.h

Typedef Documentation#

otMdnsRequestId#

typedef otPlatDnssdRequestId otMdnsRequestId

Represents a request ID (uint32_t value) for registering a host, a service, or a key service.


Definition at line 67 of file include/openthread/mdns.h

otMdnsRegisterCallback#

typedef otPlatDnssdRegisterCallback otMdnsRegisterCallback

Represents the callback function to report the outcome of a host, service, or key registration request.

Parameters
[in]aInstance

The OpenThread instance.

[in]aRequestId

The request ID.

[in]aError

Error indicating the outcome of request.

The outcome of a registration request is reported back by invoking this callback with one of the following aError inputs:

  • OT_ERROR_NONE indicates registration was successful.

  • OT_ERROR_DUPLICATED indicates a name conflict while probing, i.e., name is claimed by another mDNS responder.

See otMdnsRegisterHost(), otMdnsRegisterService(), and otMdnsRegisterKey() for more details about when the callback will be invoked.


Definition at line 86 of file include/openthread/mdns.h

otMdnsConflictCallback#

typedef void(* otMdnsConflictCallback) (otInstance *aInstance, const char *aName, const char *aServiceType) )(otInstance *aInstance, const char *aName, const char *aServiceType)

Represents the callback function to report a detected name conflict after successful registration of an entry.

Parameters
[in]aInstance

The OpenThread instance.

[in]aName

The host name or the service instance label.

[in]aServiceType

The service type (e.g., _tst._udp).

If a conflict is detected while registering an entry, it is reported through the provided otMdnsRegisterCallback. The otMdnsConflictCallback is used only when a name conflict is detected after an entry has been successfully registered.

A non-NULL aServiceType indicates that conflict is for a service entry. In this case aName specifies the service instance label (treated as as a single DNS label and can potentially include dot . character).

A NULL aServiceType indicates that conflict is for a host entry. In this case Name specifies the host name. It does not include the domain name.


Definition at line 106 of file include/openthread/mdns.h

otMdnsHost#

typedef otPlatDnssdHost otMdnsHost

Represents an mDNS host.

This type is used to register or unregister a host (otMdnsRegisterHost() and otMdnsUnregisterHost()).

See the description of each function for more details on how different fields are used in each case.


Definition at line 116 of file include/openthread/mdns.h

otMdnsService#

typedef otPlatDnssdService otMdnsService

Represents an mDNS service.

This type is used to register or unregister a service (otMdnsRegisterService() and otMdnsUnregisterService()).

See the description of each function for more details on how different fields are used in each case.


Definition at line 126 of file include/openthread/mdns.h

otMdnsKey#

typedef otPlatDnssdKey otMdnsKey

Represents an mDNS key record.

See otMdnsRegisterKey(), otMdnsUnregisterKey() for more details about fields in each case.


Definition at line 134 of file include/openthread/mdns.h

otMdnsIterator#

typedef struct otMdnsIterator otMdnsIterator

Represents an mDNS entry iterator.


Definition at line 140 of file include/openthread/mdns.h

otMdnsEntryState#

typedef enum otMdnsEntryState otMdnsEntryState

Represents a host/service/key entry state.


Definition at line 152 of file include/openthread/mdns.h

otMdnsBrowseResult#

typedef struct otMdnsBrowseResult otMdnsBrowseResult

Definition at line 493 of file include/openthread/mdns.h

otMdnsSrvResult#

typedef struct otMdnsSrvResult otMdnsSrvResult

Definition at line 494 of file include/openthread/mdns.h

otMdnsTxtResult#

typedef struct otMdnsTxtResult otMdnsTxtResult

Definition at line 495 of file include/openthread/mdns.h

otMdnsAddressResult#

typedef struct otMdnsAddressResult otMdnsAddressResult

Definition at line 496 of file include/openthread/mdns.h

otMdnsBrowseCallback#

typedef void(* otMdnsBrowseCallback) (otInstance *aInstance, const otMdnsBrowseResult *aResult) )(otInstance *aInstance, const otMdnsBrowseResult *aResult)

Represents the callback function used to report a browse result.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResult

The browse result.


Definition at line 505 of file include/openthread/mdns.h

otMdnsSrvCallback#

typedef void(* otMdnsSrvCallback) (otInstance *aInstance, const otMdnsSrvResult *aResult) )(otInstance *aInstance, const otMdnsSrvResult *aResult)

Represents the callback function used to report an SRV resolve result.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResult

The SRV resolve result.


Definition at line 514 of file include/openthread/mdns.h

otMdnsTxtCallback#

typedef void(* otMdnsTxtCallback) (otInstance *aInstance, const otMdnsTxtResult *aResult) )(otInstance *aInstance, const otMdnsTxtResult *aResult)

Represents the callback function used to report a TXT resolve result.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResult

The TXT resolve result.


Definition at line 523 of file include/openthread/mdns.h

otMdnsAddressCallback#

typedef void(* otMdnsAddressCallback) (otInstance *aInstance, const otMdnsAddressResult *aResult) )(otInstance *aInstance, const otMdnsAddressResult *aResult)

Represents the callback function use to report a IPv6/IPv4 address resolve result.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResult

The address resolve result.


Definition at line 532 of file include/openthread/mdns.h

otMdnsBrowser#

typedef struct otMdnsBrowser otMdnsBrowser

Represents a service browser.


Definition at line 544 of file include/openthread/mdns.h

otMdnsSrvResolver#

typedef struct otMdnsSrvResolver otMdnsSrvResolver

Represents an SRV service resolver.


Definition at line 569 of file include/openthread/mdns.h

otMdnsTxtResolver#

typedef struct otMdnsTxtResolver otMdnsTxtResolver

Represents a TXT service resolver.


Definition at line 597 of file include/openthread/mdns.h

otMdnsAddressResolver#

typedef struct otMdnsAddressResolver otMdnsAddressResolver

Represents an address resolver.


Definition at line 622 of file include/openthread/mdns.h

otMdnsAddressAndTtl#

typedef struct otMdnsAddressAndTtl otMdnsAddressAndTtl

Represents a discovered host address and its TTL.


Definition at line 632 of file include/openthread/mdns.h

Function Documentation#

otMdnsSetEnabled#

otError otMdnsSetEnabled (otInstance * aInstance, bool aEnable, uint32_t aInfraIfIndex)

Enables or disables the mDNS module.

Parameters
[in]aInstance

The OpenThread instance.

[in]aEnable

Boolean to indicate whether to enable (on TRUE) or disable (on FALSE).

[in]aInfraIfIndex

The network interface index for mDNS operation. Value is ignored when disabling

The mDNS module should be enabled before registration any host, service, or key entries. Disabling mDNS will immediately stop all operations and any communication (multicast or unicast tx) and remove any previously registered entries without sending any "goodbye" announcements or invoking their callback. Once disabled, all currently active browsers and resolvers are stopped.


Definition at line 170 of file include/openthread/mdns.h

otMdnsIsEnabled#

bool otMdnsIsEnabled (otInstance * aInstance)

Indicates whether the mDNS module is enabled.

Parameters
[in]aInstance

The OpenThread instance.


Definition at line 181 of file include/openthread/mdns.h

otMdnsSetQuestionUnicastAllowed#

void otMdnsSetQuestionUnicastAllowed (otInstance * aInstance, bool aAllow)

Sets whether the mDNS module is allowed to send questions requesting unicast responses referred to as "QU" questions.

Parameters
[in]aInstance

The OpenThread instance.

[in]aAllow

Indicates whether or not to allow "QU" questions.

The "QU" questions request unicast responses, in contrast to "QM" questions which request multicast responses.

When allowed, the first probe will be sent as a "QU" question. This API can be used to address platform limitation where platform socket cannot accept unicast response received on mDNS port (due to it being already bound).


Definition at line 195 of file include/openthread/mdns.h

otMdnsIsQuestionUnicastAllowed#

bool otMdnsIsQuestionUnicastAllowed (otInstance * aInstance)

Indicates whether mDNS module is allowed to send "QU" questions requesting unicast response.

Parameters
N/AaInstance

Definition at line 204 of file include/openthread/mdns.h

otMdnsSetConflictCallback#

void otMdnsSetConflictCallback (otInstance * aInstance, otMdnsConflictCallback aCallback)

Sets the post-registration conflict callback.

Parameters
[in]aInstance

The OpenThread instance.

[in]aCallback

The conflict callback.

If a conflict is detected while registering an entry, it is reported through the provided otMdnsRegisterCallback. The otMdnsConflictCallback is used only when a name conflict is detected after an entry has been successfully registered.

aCallback can be set to NULL if not needed. Subsequent calls will replace any previously set callback.


Definition at line 219 of file include/openthread/mdns.h

otMdnsRegisterHost#

otError otMdnsRegisterHost (otInstance * aInstance, const otMdnsHost * aHost, otMdnsRequestId aRequestId, otMdnsRegisterCallback aCallback)

Registers or updates a host on mDNS.

Parameters
[in]aInstance

The OpenThread instance.

[in]aHost

Information about the host to register.

[in]aRequestId

The ID associated with this request.

[in]aCallback

The callback function pointer to report the outcome (can be NULL if not needed).

The fields in aHost follow these rules:

  • The mHostName field specifies the host name to register (e.g., "myhost"). MUST NOT contain the domain name.

  • The mAddresses is array of IPv6 addresses to register with the host. mAddressesLength provides the number of entries in mAddresses array.

  • The mAddresses array can be empty with zero mAddressesLength. In this case, mDNS will treat it as if host is unregistered and stops advertising any addresses for this the host name.

  • The mTtl specifies the TTL if non-zero. If zero, the mDNS core will choose the default TTL of 120 seconds.

  • Other fields in aHost structure are ignored in an otMdnsRegisterHost() call.

This function can be called again for the same mHostName to update a previously registered host entry, for example, to change the list of addresses of the host. In this case, the mDNS module will send "goodbye" announcements for any previously registered and now removed addresses and announce any newly added addresses.

The outcome of the registration request is reported back by invoking the provided aCallback with aRequestId as its input and one of the following aError inputs:

  • OT_ERROR_NONE indicates registration was successful.

  • OT_ERROR_DULICATED indicates a name conflict while probing, i.e., name is claimed by another mDNS responder.

For caller convenience, the OpenThread mDNS module guarantees that the callback will be invoked after this function returns, even in cases of immediate registration success. The aCallback can be NULL if caller does not want to be notified of the outcome.


Definition at line 257 of file include/openthread/mdns.h

otMdnsUnregisterHost#

otError otMdnsUnregisterHost (otInstance * aInstance, const otMdnsHost * aHost)

Unregisters a host on mDNS.

Parameters
[in]aInstance

The OpenThread instance.

[in]aHost

Information about the host to unregister.

The fields in aHost follow these rules:

  • The mHostName field specifies the host name to unregister (e.g., "myhost"). MUST NOT contain the domain name.

  • Other fields in aHost structure are ignored in an otMdnsUnregisterHost() call.

If there is no previously registered host with the same name, no action is performed.

If there is a previously registered host with the same name, the mDNS module will send "goodbye" announcement for all previously advertised address records.


Definition at line 282 of file include/openthread/mdns.h

otMdnsRegisterService#

otError otMdnsRegisterService (otInstance * aInstance, const otMdnsService * aService, otMdnsRequestId aRequestId, otMdnsRegisterCallback aCallback)

Registers or updates a service on mDNS.

Parameters
[in]aInstance

The OpenThread instance.

[in]aService

Information about the service to register.

[in]aRequestId

The ID associated with this request.

[in]aCallback

The callback function pointer to report the outcome (can be NULL if not needed).

The fields in aService follow these rules:

  • The mServiceInstance specifies the service instance label. It is treated as a single DNS name label. It may contain dot . character which is allowed in a service instance label.

  • The mServiceType specifies the service type (e.g., "_tst._udp"). It is treated as multiple dot . separated labels. It MUST NOT contain the domain name.

  • The mHostName field specifies the host name of the service. MUST NOT contain the domain name.

  • The mSubTypeLabels is an array of strings representing sub-types associated with the service. Each array entry is a sub-type label. The mSubTypeLabels can be NULL if there is no sub-type. Otherwise, the array length is specified bymSubTypeLabelsLength.

  • ThemTxtDataandmTxtDataLengthspecify the encoded TXT data. ThemTxtDatacan be NULL ormTxtDataLength can be zero to specify an empty TXT data. In this case mDNS module will use a single zero byte[ 0 ]` as the TXT data.

  • The mPort, mWeight, and mPriority specify the service's parameters as specified in DNS SRV record.

  • The mTtl specifies the TTL if non-zero. If zero, the mDNS module will use the default TTL of 120 seconds.

  • Other fields in aService structure are ignored in an otMdnsRegisterService() call.

This function can be called again for the same mServiceInstance and mServiceType to update a previously registered service entry, for example, to change the sub-types list, or update any parameter such as port, weight, priority, TTL, or host name. The mDNS module will send announcements for any changed info, e.g., will send "goodbye" announcements for any removed sub-types and announce any newly added sub-types.

Regarding the invocation of the aCallback, this function behaves in the same way as described in otMdnsRegisterHost().


Definition at line 321 of file include/openthread/mdns.h

otMdnsUnregisterService#

otError otMdnsUnregisterService (otInstance * aInstance, const otMdnsService * aService)

Unregisters a service on mDNS module.

Parameters
[in]aInstance

The OpenThread instance.

[in]aService

Information about the service to unregister.

The fields in aService follow these rules:

  • The mServiceInstance specifies the service instance label. It is treated as a single DNS name label. It may contain dot . character which is allowed in a service instance label.

  • The mServiceType specifies the service type (e.g., "_tst._udp"). It is treated as multiple dot . separated labels. It MUST NOT contain the domain name.

  • Other fields in aService structure are ignored in an otMdnsUnregisterService() call.

If there is no previously registered service with the same name, no action is performed.

If there is a previously registered service with the same name, the mDNS module will send "goodbye" announcements for all related records.


Definition at line 349 of file include/openthread/mdns.h

otMdnsRegisterKey#

otError otMdnsRegisterKey (otInstance * aInstance, const otMdnsKey * aKey, otMdnsRequestId aRequestId, otMdnsRegisterCallback aCallback)

Registers or updates a key record on mDNS module.

Parameters
[in]aInstance

The OpenThread instance.

[in]aKey

Information about the key record to register.

[in]aRequestId

The ID associated with this request.

[in]aCallback

The callback function pointer to report the outcome (can be NULL if not needed).

The fields in aKey follow these rules:

  • If the key is associated with a host entry, the mName field specifies the host name and the mServiceType MUST be NULL.

  • If the key is associated with a service entry, the mName filed specifies the service instance label (always treated as a single label) and the mServiceType filed specifies the service type (e.g., "_tst._udp"). In this case the DNS name for key record is <mName>.<mServiceTye>.

  • The mKeyData field contains the key record's data with mKeyDataLength as its length in byes.

  • The mTtl specifies the TTL if non-zero. If zero, the mDNS module will use the default TTL of 120 seconds.

  • Other fields in aKey structure are ignored in an otMdnsRegisterKey() call.

This function can be called again for the same name to updated a previously registered key entry, for example, to change the key data or TTL.

Regarding the invocation of the aCallback, this function behaves in the same way as described in otMdnsRegisterHost().


Definition at line 380 of file include/openthread/mdns.h

otMdnsUnregisterKey#

otError otMdnsUnregisterKey (otInstance * aInstance, const otMdnsKey * aKey)

Unregisters a key record on mDNS.

Parameters
[in]aInstance

The OpenThread instance.

[in]aKey

Information about the key to unregister.

The fields in aKey follow these rules:

  • If the key is associated with a host entry, the mName field specifies the host name and the mServiceType MUST be NULL.

  • If the key is associated with a service entry, the mName filed specifies the service instance label (always treated as a single label) and the mServiceType filed specifies the service type (e.g., "_tst._udp"). In this case the DNS name for key record is <mName>.<mServiceTye>.

  • Other fields in aKey structure are ignored in an otMdnsUnregisterKey() call.

If there is no previously registered key with the same name, no action is performed.

If there is a previously registered key with the same name, the mDNS module will send "goodbye" announcements for the key record.


Definition at line 409 of file include/openthread/mdns.h

otMdnsAllocateIterator#

otMdnsIterator * otMdnsAllocateIterator (otInstance * aInstance)

Allocates a new iterator.

Parameters
[in]aInstance

The OpenThread instance.

An allocated iterator must be freed by the caller using otMdnsFreeIterator().

Returns

  • A pointer to the allocated iterator, or NULL if it fails to allocate.


Definition at line 421 of file include/openthread/mdns.h

otMdnsFreeIterator#

void otMdnsFreeIterator (otInstance * aInstance, otMdnsIterator * aIterator)

Frees a previously allocated iterator.

Parameters
[in]aInstance

The OpenThread instance.

[in]aIterator

The iterator to free.


Definition at line 430 of file include/openthread/mdns.h

otMdnsGetNextHost#

otError otMdnsGetNextHost (otInstance * aInstance, otMdnsIterator * aIterator, otMdnsHost * aHost, otMdnsEntryState * aState)

Iterates over registered host entries.

Parameters
[in]aInstance

The OpenThread instance.

[in]aIterator

Pointer to the iterator.

[out]aHost

Pointer to an otMdnsHost to return the information about the next host entry.

[out]aState

Pointer to an otMdnsEntryState to return the entry state.

On success, aHost is populated with information about the next host. Pointers within the otMdnsHost structure (like mName) remain valid until the next call to any OpenThread stack's public or platform API/callback.


Definition at line 448 of file include/openthread/mdns.h

otMdnsGetNextService#

otError otMdnsGetNextService (otInstance * aInstance, otMdnsIterator * aIterator, otMdnsService * aService, otMdnsEntryState * aState)

Iterates over registered service entries.

Parameters
[in]aInstance

The OpenThread instance.

[in]aIterator

Pointer to the iterator to use.

[out]aService

Pointer to an otMdnsService to return the information about the next service entry.

[out]aState

Pointer to an otMdnsEntryState to return the entry state.

On success, aService is populated with information about the next service . Pointers within the otMdnsService structure (like mServiceType, mSubTypeLabels) remain valid until the next call to any OpenThread stack's public or platform API/callback.


Definition at line 470 of file include/openthread/mdns.h

otMdnsGetNextKey#

otError otMdnsGetNextKey (otInstance * aInstance, otMdnsIterator * aIterator, otMdnsKey * aKey, otMdnsEntryState * aState)

Iterates over registered key entries.

Parameters
[in]aInstance

The OpenThread instance.

[in]aIterator

Pointer to the iterator to use.

[out]aKey

Pointer to an otMdnsKey to return the information about the next key entry.

[out]aState

Pointer to an otMdnsEntryState to return the entry state.

On success, aKey is populated with information about the next key. Pointers within the otMdnsKey structure (like mName) remain valid until the next call to any OpenThread stack's public or platform API/callback.


Definition at line 491 of file include/openthread/mdns.h

otMdnsStartBrowser#

otError otMdnsStartBrowser (otInstance * aInstance, const otMdnsBrowser * aBrowser)

Starts a service browser.

Parameters
[in]aInstance

The OpenThread instance.

[in]aBrowser

The browser to be started.

Initiates a continuous search for the specified mServiceType in aBrowser. For sub-type services, use mSubTypeLabel to define the sub-type, for base services, set mSubTypeLabel to NULL.

Discovered services are reported through the mCallback function in aBrowser. Services that have been removed are reported with a TTL value of zero. The callback may be invoked immediately with cached information (if available) and potentially before this function returns. When cached results are used, the reported TTL value will reflect the original TTL from the last received response.

Multiple browsers can be started for the same service, provided they use different callback functions.


Definition at line 667 of file include/openthread/mdns.h

otMdnsStopBrowser#

otError otMdnsStopBrowser (otInstance * aInstance, const otMdnsBrowser * aBroswer)

Stops a service browser.

Parameters
[in]aInstance

The OpenThread instance.

[in]aBroswer

The browser to stop.

No action is performed if no matching browser with the same service and callback is currently active.


Definition at line 681 of file include/openthread/mdns.h

otMdnsStartSrvResolver#

otError otMdnsStartSrvResolver (otInstance * aInstance, const otMdnsSrvResolver * aResolver)

Starts an SRV record resolver.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResolver

The resolver to be started.

Initiates a continuous SRV record resolver for the specified service in aResolver.

Discovered information is reported through the mCallback function in aResolver. When the service is removed it is reported with a TTL value of zero. In this case, mHostName may be NULL and other result fields (such as mPort) should be ignored.

The callback may be invoked immediately with cached information (if available) and potentially before this function returns. When cached result is used, the reported TTL value will reflect the original TTL from the last received response.

Multiple resolvers can be started for the same service, provided they use different callback functions.


Definition at line 706 of file include/openthread/mdns.h

otMdnsStopSrvResolver#

otError otMdnsStopSrvResolver (otInstance * aInstance, const otMdnsSrvResolver * aResolver)

Stops an SRV record resolver.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResolver

The resolver to stop.

No action is performed if no matching resolver with the same service and callback is currently active.


Definition at line 720 of file include/openthread/mdns.h

otMdnsStartTxtResolver#

otError otMdnsStartTxtResolver (otInstance * aInstance, const otMdnsTxtResolver * aResolver)

Starts a TXT record resolver.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResolver

The resolver to be started.

Initiates a continuous TXT record resolver for the specified service in aResolver.

Discovered information is reported through the mCallback function in aResolver. When the TXT record is removed it is reported with a TTL value of zero. In this case, mTxtData may be NULL, and other result fields (such as mTxtDataLength) should be ignored.

The callback may be invoked immediately with cached information (if available) and potentially before this function returns. When cached result is used, the reported TTL value will reflect the original TTL from the last received response.

Multiple resolvers can be started for the same service, provided they use different callback functions.


Definition at line 745 of file include/openthread/mdns.h

otMdnsStopTxtResolver#

otError otMdnsStopTxtResolver (otInstance * aInstance, const otMdnsTxtResolver * aResolver)

Stops a TXT record resolver.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResolver

The resolver to stop.

No action is performed if no matching resolver with the same service and callback is currently active.


Definition at line 759 of file include/openthread/mdns.h

otMdnsStartIp6AddressResolver#

otError otMdnsStartIp6AddressResolver (otInstance * aInstance, const otMdnsAddressResolver * aResolver)

Starts an IPv6 address resolver.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResolver

The resolver to be started.

Initiates a continuous IPv6 address resolver for the specified host name in aResolver.

Discovered addresses are reported through the mCallback function in aResolver. The callback is invoked whenever addresses are added or removed, providing an updated list. If all addresses are removed, the callback is invoked with an empty list (mAddresses will be NULL, and mAddressesLength will be zero).

The callback may be invoked immediately with cached information (if available) and potentially before this function returns. When cached result is used, the reported TTL values will reflect the original TTL from the last received response.

Multiple resolvers can be started for the same host name, provided they use different callback functions.


Definition at line 784 of file include/openthread/mdns.h

otMdnsStopIp6AddressResolver#

otError otMdnsStopIp6AddressResolver (otInstance * aInstance, const otMdnsAddressResolver * aResolver)

Stops an IPv6 address resolver.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResolver

The resolver to stop.

No action is performed if no matching resolver with the same host name and callback is currently active.


Definition at line 798 of file include/openthread/mdns.h

otMdnsStartIp4AddressResolver#

otError otMdnsStartIp4AddressResolver (otInstance * aInstance, const otMdnsAddressResolver * aResolver)

Starts an IPv4 address resolver.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResolver

The resolver to be started.

Initiates a continuous IPv4 address resolver for the specified host name in aResolver.

Discovered addresses are reported through the mCallback function in aResolver. The IPv4 addresses are represented using the IPv4-mapped IPv6 address format in mAddresses array. The callback is invoked whenever addresses are added or removed, providing an updated list. If all addresses are removed, the callback is invoked with an empty list (mAddresses will be NULL, and mAddressesLength will be zero).

The callback may be invoked immediately with cached information (if available) and potentially before this function returns. When cached result is used, the reported TTL values will reflect the original TTL from the last received response.

Multiple resolvers can be started for the same host name, provided they use different callback functions.


Definition at line 824 of file include/openthread/mdns.h

otMdnsStopIp4AddressResolver#

otError otMdnsStopIp4AddressResolver (otInstance * aInstance, const otMdnsAddressResolver * aResolver)

Stops an IPv4 address resolver.

Parameters
[in]aInstance

The OpenThread instance.

[in]aResolver

The resolver to stop.

No action is performed if no matching resolver with the same host name and callback is currently active.


Definition at line 838 of file include/openthread/mdns.h