Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/soh335/go-dnssd

Golang interface to the dns-sd library
https://github.com/soh335/go-dnssd

Last synced: 23 days ago
JSON representation

Golang interface to the dns-sd library

Awesome Lists containing this project

README

        

# go-dnssd

Golang interface to the dns-sd library.

* It is alpha quality.
* Requires [dns_sd.h](http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.5/mDNSShared/dns_sd.h).

Use OSX's `dns-sd` utility to debug:
```bash
# Browse http services on this network
dns-sd -B _http._tcp. .

# Get details aboout the "My Test" service
dns-sd -L "My Test" _http._tcp. .

# Register a "My Test" service
dns-sd -R "My Test" _http._tcp . 3000 path=/path-to-page.html
```