Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPassthroughBindIPs (0.24 sec)

  1. pilot/pkg/networking/core/listener_address.go

    func getActualWildcardAndLocalHost(node *model.Proxy) (string, string) {
    	if node.SupportsIPv4() {
    		return WildcardAddress, LocalhostAddress
    	}
    	return WildcardIPv6Address, LocalhostIPv6Address
    }
    
    func getPassthroughBindIPs(ipMode model.IPMode) []string {
    	if !features.EnableDualStack && ipMode == model.Dual {
    		return []string{InboundPassthroughBindIpv4}
    	}
    
    	passthroughBindIPAddresses := passthroughBindIPs[ipMode]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    		proxyID:            proxy.ID,
    		proxyType:          proxy.Type,
    		proxyVersion:       proxy.Metadata.IstioVersion,
    		sidecarScope:       proxy.SidecarScope,
    		passThroughBindIPs: getPassthroughBindIPs(proxy.GetIPMode()),
    		supportsIPv4:       proxy.SupportsIPv4(),
    		supportsIPv6:       proxy.SupportsIPv6(),
    		sendHbone:          features.EnableHBONESend || proxy.IsWaypointProxy(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top