Difference between revisions of "Mesh/Firmware/Zeroconf"

From Sudo Room
Jump to navigation Jump to search
(Created page with "We need a basic DNS-SD client (and possibly server) on the nodes. One need for a client is for the node configurator. = mdns-utils = The OpenWRT package mdns-utils is actual...")
(No difference)

Revision as of 23:40, 24 October 2013

We need a basic DNS-SD client (and possibly server) on the nodes. One need for a client is for the node configurator.

mdns-utils

The OpenWRT package mdns-utils is actually just compiling part of Apple's mDNSResponder.

The mDNSClient utility only outputs lines to stderr like:

 *** Found name = 'Foo', type = '_afpovertcp._tcp.', domain = 'local.'

So only the service name, service type and domain.

The code that outputs this line is in the file mDNSResponder/mDNSPosix/Client.c in the function BrowseCallback.