type google.golang.org/grpc/internal/proxyattributes.Options
9 uses
google.golang.org/grpc/internal/proxyattributes (current package)
proxyattributes.go#L35: type Options struct {
proxyattributes.go#L41: func Set(addr resolver.Address, opts Options) resolver.Address {
proxyattributes.go#L49: func Get(addr resolver.Address) (Options, bool) {
proxyattributes.go#L51: return a.(Options), true
proxyattributes.go#L53: return Options{}, false
google.golang.org/grpc/internal/resolver/delegatingresolver
delegatingresolver.go#L262: addresses = append(addresses, proxyattributes.Set(proxyAddr, proxyattributes.Options{
delegatingresolver.go#L281: addrs = append(addrs, proxyattributes.Set(proxyAddr, proxyattributes.Options{
google.golang.org/grpc/internal/transport
proxy.go#L57: func doHTTPConnectHandshake(ctx context.Context, conn net.Conn, grpcUA string, opts proxyattributes.Options) (_ net.Conn, err error) {
proxy.go#L102: func proxyDial(ctx context.Context, addr resolver.Address, grpcUA string, opts proxyattributes.Options) (net.Conn, error) {