In either a Windows or Mac OS X terminal if you type…
nslookup -type=SRV _xmpp-server._tcp.gmail.com
… (for example) you will receive a bunch of SRV records relating to different google chat servers..
Does anyone have any experience in this area and possibly know how to service this information (hostname, port, weight, priority) using the iPhone SDK? I have experimented with the Bonjour classes, but as yet have had no luck..
Thanks!
I believe you need to use the DNSServiceDiscovery framework. I don’t have the iPhone SDK, but a Google search suggests that it is available on the iPhone.
See the Apple Developer Site for full API details.
I’ve included some (incomplete) sample code too:
You’ll need to provide your own callback function, and note that the
rdatafield sent to the callback is in wire-format, so you’ll have to decode the raw data from the SRV record fields yourself.