- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for GetSocketAddress (0.09 sec)
-
istioctl/pkg/writer/envoy/configdump/endpoint.go
} func retrieveEndpointStatus(ep *endpoint.LbEndpoint) core.HealthStatus { return ep.GetHealthStatus() } func retrieveEndpointPort(ep *endpoint.LbEndpoint) uint32 { return ep.GetEndpoint().GetAddress().GetSocketAddress().GetPortValue() } func retrieveEndpointAddresses(ep *endpoint.LbEndpoint) []string { addrs := []*core.Address{ep.GetEndpoint().GetAddress()} for _, a := range ep.GetEndpoint().GetAdditionalAddresses() {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 09:57:29 UTC 2024 - 6.1K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/clusters/clusters.go
return fmt.Errorf("error unmarshalling config dump response from Envoy: %v", err) } c.clusters = &cd return nil } func retrieveEndpointAddress(host *admin.HostStatus) string { 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 {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Nov 03 08:41:32 UTC 2022 - 5.8K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/listener.go
for _, socketAddr := range socketAddresses { addr := socketAddr.Address addrs = append(addrs, addr.GetSocketAddress().Address) } return addrs } func retrieveListenerPort(l *listener.Listener) uint32 { return l.Address.GetSocketAddress().GetPortValue() } func (c *ConfigWriter) PrintRemoteListenerSummary() error { w, listeners, err := c.setupListenerConfigWriter()
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 18.1K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
// the old config_dumps in support of https://github.com/istio/istio/issues/23042 if filter.Verify(listenerTyped) { sockAddr := listenerTyped.Address.GetSocketAddress() if sockAddr != nil { // Skip outbound listeners if sockAddr.Address == "0.0.0.0" { continue } } for _, filterChain := range listenerTyped.FilterChains {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0)