ArduinoMDNS
ArduinoMDNS copied to clipboard
mDNS Library for Arduino
by sending the length the header instead of the just 4 needed bytes. See #7
The service query message appends some data that shouldn't be transmitted. I will create a more thorough explanation soon.
I am looking a way to to pin my dependencies, would this be possible to have tags in this repo ? Eventually aligned the arduino sdk ones
Hello dear developers, I see that the trippylighting branch has a few additional commits/fixes (june-august 2017) since the last one here (april 2017). Would it be possible/necessary to include these...
During my tests I found that a character is missing. In my code I use: `mDNS.addServiceRecord("_ewillie._tcp", 1883, MDNSServiceTCP, "testdata");` When I look with Discovery.app ( www.tildesoft.com ), I only see...
If some memory allocation in the member function addServiceRecord fails it will call 'goto errorReturn;'. At errorReturn there is a call to my_free which ALWAYS frees 'record->servName' at the moment....
The example starts out with udp as the protocol used for mDNS but when registering the service it tries to use TCP which will cause it to crash  
When I use one arduino to generate an MDNS service, and another arduino to listen to the service... 1. The service name is OK 2. The IP address is OK,...
Most of the responses properly show the name and port of what was found, but most of the IP Addresses reported are shown as 0.0.0.0, but do show up using...
In more than one location, space is created with something like: ```cpp char* mem = malloc( strlen( text ) ); ``` followed by something like: ```cpp strcpy(mem, text); ``` This...