Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetDestinationPort (0.22 sec)

  1. pilot/pkg/simulation/traffic.go

    	input Call, hasTLSInspector bool,
    ) (*listener.FilterChain, error) {
    	chains = filter("DestinationPort", chains, func(fc *listener.FilterChainMatch) bool {
    		return fc.GetDestinationPort() == nil
    	}, func(fc *listener.FilterChainMatch) bool {
    		return int(fc.GetDestinationPort().GetValue()) == input.Port
    	})
    	chains = filter("PrefixRanges", chains, func(fc *listener.FilterChainMatch) bool {
    		return fc.GetPrefixRanges() == nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    	}
    
    	// inspectors builds up a map of port -> required inspectors (TLS/HTTP)
    	inspectors := map[int]enabledInspector{}
    	for _, fc := range vi.FilterChains {
    		port := fc.GetFilterChainMatch().GetDestinationPort().GetValue()
    		needsTLS := fc.GetFilterChainMatch().GetTransportProtocol() == xdsfilters.TLSTransportProtocol
    		needHTTP := false
    		for _, ap := range fc.GetFilterChainMatch().GetApplicationProtocols() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top