type net.SRV
7 uses
net (current package)
dnsclient.go#L153: type SRV struct {
dnsclient.go#L161: type byPriorityWeight []*SRV
lookup.go#L419: func LookupSRV(service, proto, name string) (cname string, addrs []*SRV, err error) {
lookup.go#L432: func (r *Resolver) LookupSRV(ctx context.Context, service, proto, name string) (cname string, addrs []*SRV, err error) {
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})