Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OutboundListenerClass (0.2 sec)

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

    	}
    
    	maybeSetHashPolicy(destinationRule, tcpProxy, subsetName)
    	applyTunnelingConfig(tcpProxy, destinationRule, subsetName)
    	class := model.OutboundListenerClass(lb.node.Type)
    	tcpFilter := setAccessLogAndBuildTCPFilter(lb.push, lb.node, tcpProxy, class, nil)
    	networkFilterStack := buildNetworkFiltersStack(port.Protocol, tcpFilter, statPrefix, clusterName)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder.go

    		ipTablesListener.AdditionalAddresses = util.BuildAdditionalAddresses(ipv4Wildcards[0:], uint32(lb.push.Mesh.ProxyListenPort))
    	}
    
    	class := model.OutboundListenerClass(lb.node.Type)
    	accessLogBuilder.setListenerAccessLog(lb.push, lb.node, ipTablesListener, class)
    	lb.virtualOutboundListener = ipTablesListener
    	return lb
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/context.go

    	SecretAllowed(resourceName string, namespace string) bool
    }
    
    // OutboundListenerClass is a helper to turn a NodeType for outbound to a ListenerClass.
    func OutboundListenerClass(t NodeType) istionetworking.ListenerClass {
    	if t == Router {
    		return istionetworking.ListenerClassGateway
    	}
    	return istionetworking.ListenerClassSidecarOutbound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top