Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetTransportProtocol (0.28 sec)

  1. pilot/test/xdstest/validate.go

    			if p == fc.GetFilterChainMatch().GetDestinationPort().GetValue() && fc.GetFilterChainMatch().GetTransportProtocol() != "" {
    				hasTLSInspector = true
    			}
    		}
    		if hasTLSInspector {
    			for _, fc := range l.FilterChains {
    				if p == fc.GetFilterChainMatch().GetDestinationPort().GetValue() && fc.GetFilterChainMatch().GetTransportProtocol() == "" {
    					// Note: matches [{transport=tls},{}] and [{transport=tls},{transport=buffer}]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pilot/pkg/simulation/traffic.go

    		return fc.GetTransportProtocol() == ""
    	}, func(fc *listener.FilterChainMatch) bool {
    		if !hasTLSInspector {
    			// Without tls inspector, transport protocol will always be raw buffer
    			return fc.GetTransportProtocol() == xdsfilters.RawBufferTransportProtocol
    		}
    		switch fc.GetTransportProtocol() {
    		case xdsfilters.TLSTransportProtocol:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listenertest/match.go

    	Unknown     FilterChainType = "unknown"
    )
    
    func classifyFilterChain(have *listener.FilterChain) FilterChainType {
    	fcm := have.GetFilterChainMatch()
    	alpn := sets.New(fcm.GetApplicationProtocols()...)
    	switch fcm.GetTransportProtocol() {
    	case xdsfilters.TLSTransportProtocol:
    		if alpn.Contains("istio-http/1.1") {
    			return MTLSHTTP
    		}
    		if alpn.Contains("istio") {
    			return MTLSTCP
    		}
    		return StandardTLS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_inbound.go

    	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() {
    			// Check for HTTP protocol - these require HTTP inspector
    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