mdns icon indicating copy to clipboard operation
mdns copied to clipboard

basic mdns server and discovery client

Results 4 mdns issues
Sort by recently updated
recently updated
newest added

I'm not too familiar with mdns, so perhaps this is how it is supposed to work, but... I have a Node.js service that I'm advertising as `trace-appliance._trap-tracer._udp.local`. In my Elixir...

I'd like to advertise an `ssh` service so that a laptop running on the same LAN can discover the device. I've tried `avahi-browse _ssh._tcp` on my Linux laptop and made...

When I'm start a server with following records: ```elixir [ # create domain for an ip %Mdns.Server.Service{domain: "somedomain.local", data: :ip, ttl: 450, type: :a}, # make service discoverable %Mdns.Server.Service{domain: "_services._dns-sd._udp.local",data:...

This results in a timeout the first time that you try to contact the device running the `mdns` library. The second or third time seem to be ok.