Codebase list golang-github-go-kit-kit / 83d577e9-6bde-44ab-b9f1-1c182b806b8a/main sd / dnssrv / lookup.go
83d577e9-6bde-44ab-b9f1-1c182b806b8a/main

Tree @83d577e9-6bde-44ab-b9f1-1c182b806b8a/main (Download .tar.gz)

lookup.go @83d577e9-6bde-44ab-b9f1-1c182b806b8a/mainraw · history · blame

1
2
3
4
5
6
7
package dnssrv

import "net"

// Lookup is a function that resolves a DNS SRV record to multiple addresses.
// It has the same signature as net.LookupSRV.
type Lookup func(service, proto, name string) (cname string, addrs []*net.SRV, err error)