Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetEnvoyInternalAddress (0.19 sec)

  1. istioctl/pkg/writer/envoy/clusters/clusters.go

    	addr := host.Address.GetSocketAddress()
    	if addr != nil {
    		return addr.Address
    	}
    	if pipe := host.Address.GetPipe(); pipe != nil {
    		return "unix://" + pipe.Path
    	}
    	if internal := host.Address.GetEnvoyInternalAddress(); internal != nil {
    		switch an := internal.GetAddressNameSpecifier().(type) {
    		case *core.EnvoyInternalAddress_ServerListenerName:
    			return fmt.Sprintf("envoy://%s/%s", an.ServerListenerName, internal.EndpointId)
    		}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/endpoint.go

    			continue
    		}
    		if addr := addr.GetPipe(); addr != nil {
    			result = append(result, addr.GetPath())
    			continue
    		}
    		if internal := addr.GetEnvoyInternalAddress(); internal != nil {
    			switch an := internal.GetAddressNameSpecifier().(type) {
    			case *core.EnvoyInternalAddress_ServerListenerName:
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Jul 22 09:57:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top