Simple mDNS client/server library
Go to file
Red Daly e39d11792c Refactor mdns.MDNSService API in zone.go.
- Change API for constructing an MDNSService: use NewMDNSService func instead of
  creating an MDNSService struct and calling its Init method.
- Allow full specification of the host name and IP addresses of an MDNSService
  instead of relying on the net package to infer them from the OS.
- Remove deprecated Addr member of MDNSService.
- Modify tests to comply with new API.
2014-10-16 10:38:12 -07:00
.gitignore Updating gitignore 2014-01-29 16:17:00 -08:00
client.go Refactor client.go. 2014-10-15 14:49:00 -07:00
LICENSE Initial commit 2014-01-29 11:39:18 -08:00
README.md Update example in README 2014-09-11 14:18:46 +02:00
server_test.go Refactor mdns.MDNSService API in zone.go. 2014-10-16 10:38:12 -07:00
server.go Merge pull request #11 from richtr/no_ipbind_warning_on_success 2014-09-13 15:35:21 -07:00
zone_test.go Refactor mdns.MDNSService API in zone.go. 2014-10-16 10:38:12 -07:00
zone.go Refactor mdns.MDNSService API in zone.go. 2014-10-16 10:38:12 -07:00

mdns

Simple mDNS client/server library in Golang. mDNS or Multicast DNS can be used to discover services on the local network without the use of an authoritative DNS server. This enables peer-to-peer discovery. It is important to note that many networks restrict the use of multicasting, which prevents mDNS from functioning. Notably, multicast cannot be used in any sort of cloud, or shared infrastructure environment. However it works well in most office, home, or private infrastructure environments.

Using the library is very simple, here is an example of publishing a service entry:

// Setup our service export
host, _ := os.Hostname()
service := &mdns.MDNSService{
    Instance: host,
    Service: "_foobar._tcp",
    Port:    8000,
    Info:    "My awesome service",
}
service.Init()

// Create the mDNS server, defer shutdown
server, _ := mdns.NewServer(&mdns.Config{Zone: service})
defer server.Shutdown()

Doing a lookup for service providers is also very simple:

// Make a channel for results and start listening
entriesCh := make(chan *mdns.ServiceEntry, 4)
go func() {
    for entry := range entriesCh {
        fmt.Printf("Got new entry: %v\n", entry)
    }
}()

// Start the lookup
mdns.Lookup("_foobar._tcp", entriesCh)
close(entriesCh)