After initially setting up attributes for the NsdServiceInfo and calling registerService, how is it possible to update the attributes?
With iOS, you just call [service setTXTRecordData...]. I don't see any way to do it with Android so far.
After initially setting up attributes for the NsdServiceInfo and calling registerService, how is it possible to update the attributes?
With iOS, you just call [service setTXTRecordData...]. I don't see any way to do it with Android so far.
I know everyone hates that type of answers...
But consider trying 3rd party lib for doing that. E.g. JmDNS: https://github.com/jmdns/jmdns
Pros:
Cons:
FWIW the native bonjour API supports updating txt records w/o unregistering the service.
From dns_sd.h
DNSServiceUpdateRecord
*
* Update a registered resource record. The record must either be:
* - The primary txt record of a service registered via DNSServiceRegister()
* - A record added to a registered service via DNSServiceAddRecord()
* - An individual record registered by DNSServiceRegisterRecord()
I'm not familiar with iOS API, but I don't think there is a direct way to do this with NSD API, according to rfc 6762 section 8.4:
Attributes are usually advertised in TXT record, So I don't think iOS has some magic to update the TXT record, it must re-announce or send a "goodbye" announcement. Since Android NSD doesn't provide an API to send a single TXT record, AFAIK, the only way to do this is to call
NsdManager.unregisterService()
thenNsdManager.registerService()
.