I am wondering the possibility of directly using bonjour over bluetooth in iPhone OS 3.0 or later without using GameKit. Can anyone provide any examples ?
|
|
Just announce the service, just like tc. has said below:
With iOS5, however, let's-call-it "Bluetooth Bonjour" is disabled by default, so you have to use the C API declared in
This is just the announcement part; resolving is a bit more complex. I suggest you take a look at the following examples from Apple:
After announcing or resolving your service, you use regular BSD sockets to listen or connect. When writing a server, you may even want to first For more info on BSD sockets, just Google around for a tutorial. Note: information about iOS 5 comes from Apple's Technical Q&A QA1753. |
|||||
|
|
If Bluetooth is enabled, on a new-enough device (3G and above, or iPod equivalent, or iPad) and a new-enough OS (3.1 apparently), Bonjour will automatically work over Bluetooth using link-local addresses (168.254.*). Then you just use TCP/UDP normally. (Under the hood, I'm pretty sure GameKit uses Bonjour-over-IP-over-Bluetooth.) Sypposedly the publishing/browsing is done at the Bluetooth layer, but if one publishes a Bonjour service and the other browses for it, an automatic IP-over-Bluetooth connection is established. Any Bonjour examples should automatically work. |
|||||||||||||
|
|
Read this article : Bonjour over Bluetooth on iOS 5.0 https://developer.apple.com/library/ios/#qa/qa1753/_index.html#//apple_ref/doc/uid/DTS40011315 It is a known issue in IOS 5.0 and need to be resolved using lower level API : DNSSDObjects. |
|||
|
|