tedhenry100
tedhenry100
If a service has been found, has not been resolved, but is removed, is it stuck forever in `self.resolvingServices`? It looks like [netServiceBrowser:didRemoveService:moreComing:](https://github.com/balthazar/react-native-zeroconf/blob/master/ios/RNZeroconf/RNZeroconf.m#L65) doesn't remove the service from `self.resolvingServices`.
react-native-zeroconf's `scan` method takes three parameters: `type`, `protocol`, and `domain`. It looks like the Android implementation doesn't make any use of the `domain` parameter at all. The iOS implementation does...
Hi, I've been using aWOT in a new project and development is going well. Thanks for your work developing aWOT. I would like to have access to the `Host` header...
Clarify meaning of '!' at beginning of packet and allow '!' in the data. Also remove magic number.
Fixes #23 and #31. Also remove magic number to fix #30. (This is unrelated to #23 and #31 but I don't know how to create separate pull requests in GitHub...
The reason for the following line is presumably to avoid reading off the end of `packetbuffer`. `if (replyidx >= 20) break;` https://github.com/adafruit/Adafruit_BluefruitLE_nRF51/blob/b80b880a62646223ba28b93301164c2134c9f4fc/examples/cplay_neopixel_picker/packetParser.cpp#L83 In the case that the value of `READ_BUFSIZE`...