type net.SRV
9 uses
net (current package)
dnsclient.go#L153: type SRV struct {
dnsclient.go#L161: type byPriorityWeight []*SRV
lookup.go#L490: func LookupSRV(service, proto, name string) (cname string, addrs []*SRV, err error) {
lookup.go#L508: func (r *Resolver) LookupSRV(ctx context.Context, service, proto, name string) (string, []*SRV, error) {
lookup.go#L516: filteredAddrs := make([]*SRV, 0, len(addrs))
lookup_unix.go#L131: func (r *Resolver) lookupSRV(ctx context.Context, service, proto, name string) (string, []*SRV, error) {
lookup_unix.go#L142: var srvs []*SRV
lookup_unix.go#L177: srvs = append(srvs, &SRV{Target: srv.Target.String(), Port: srv.Port, Priority: srv.Priority, Weight: srv.Weight})
google.golang.org/grpc/internal/resolver/dns
dns_resolver.go#L164: LookupSRV(ctx context.Context, service, proto, name string) (cname string, addrs []*net.SRV, err error)