No description
  • Go 97.4%
  • Makefile 2.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
dependabot[bot] fdf95184ab
[chore] : Bump actions/setup-go from 6.5.0 to 7.0.0 in the actions group (#161)
Bumps the actions group with 1 update: [actions/setup-go](https://github.com/actions/setup-go).


Updates `actions/setup-go` from 6.5.0 to 7.0.0
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](924ae3a1cd...b7ad1dad31)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-20 07:35:30 +01:00
.github [chore] : Bump actions/setup-go from 6.5.0 to 7.0.0 in the actions group (#161) 2026-07-20 07:35:30 +01:00
.copywrite.hcl CI: update checks and copywrite config (#153) 2026-06-11 14:46:46 -04:00
.gitignore Updating gitignore 2014-01-29 16:17:00 -08:00
.golangci.yaml CI: update checks and copywrite config (#153) 2026-06-11 14:46:46 -04:00
CHANGELOG.md IND-3878 changelog.md file added, updating dependabot.yml 2025-06-12 13:34:15 +05:30
client.go CI: update checks and copywrite config (#153) 2026-06-11 14:46:46 -04:00
go.mod [chore] : Bump golang.org/x/net from 0.56.0 to 0.57.0 in the go group (#160) 2026-07-13 07:27:21 +01:00
go.sum [chore] : Bump golang.org/x/net from 0.56.0 to 0.57.0 in the go group (#160) 2026-07-13 07:27:21 +01:00
LICENSE CI: update checks and copywrite config (#153) 2026-06-11 14:46:46 -04:00
Makefile CI: update checks and copywrite config (#153) 2026-06-11 14:46:46 -04:00
README.md Add GitHub Actions workflow (#98) 2023-04-28 09:19:42 -07:00
server.go CI: update checks and copywrite config (#153) 2026-06-11 14:46:46 -04:00
server_test.go [COMPLIANCE] Update Copyright and License Headers 2025-11-03 21:40:54 +00:00
zone.go [COMPLIANCE] Update Copyright and License Headers 2025-11-03 21:40:54 +00:00
zone_test.go [COMPLIANCE] Update Copyright and License Headers 2025-11-03 21:40:54 +00:00

mdns

Build Status

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()
info := []string{"My awesome service"}
service, _ := mdns.NewMDNSService(host, "_foobar._tcp", "", "", 8000, nil, info)

// 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)