ArduinoMDNS icon indicating copy to clipboard operation
ArduinoMDNS copied to clipboard

mDNS Library for Arduino

Results 18 ArduinoMDNS issues
Sort by recently updated
recently updated
newest added

by sending the length the header instead of the just 4 needed bytes. See #7

type: imperfection
topic: code

The service query message appends some data that shouldn't be transmitted. I will create a more thorough explanation soon.

type: imperfection
topic: code

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

type: enhancement

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...

type: imperfection
type: enhancement
topic: code

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....

type: imperfection
topic: code

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 ![image](https://user-images.githubusercontent.com/54160598/230542405-d8fae7cd-50cb-4125-a2d1-c42318a00707.png) ![image](https://user-images.githubusercontent.com/54160598/230542432-e71e98a1-7607-4781-a8e9-6e603af1212c.png)

type: imperfection
topic: documentation

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,...

type: imperfection

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...

type: imperfection
topic: code