MyGit

hashicorp/mdns

Fork: 207 Star: 1171 (更新于 2024-09-08 12:44:20)

license: MIT

Language: Go .

Simple mDNS client/server library in Golang

最后发布版本: v1.0.5 ( 2022-01-04 02:31:30)

GitHub网址

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)

最近版本更新:(数据更新于 2024-09-10 18:26:34)

2022-01-04 02:31:30 v1.0.5

2019-03-28 02:50:13 v1.0.1

hashicorp/mdns同语言 Go最近更新仓库

2024-10-05 05:31:09 kubernetes/kubernetes

2024-10-04 22:59:15 kubernetes/dashboard

2024-10-03 21:20:54 filebrowser/filebrowser

2024-10-03 20:46:45 AdguardTeam/AdGuardHome

2024-10-03 06:33:58 caddyserver/caddy

2024-10-03 06:30:58 minio/minio