Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for ALPNs (0.14 sec)

  1. tests/integration/pilot/common/routing.go

    // autoPassthroughCases tests that we cannot hit unexpected destinations when using AUTO_PASSTHROUGH
    func autoPassthroughCases(t TrafficContext) {
    	// We test the cross product of all Istio ALPNs (or no ALPN), all mTLS modes, and various backends
    	alpns := []string{"istio", "istio-peer-exchange", "istio-http/1.0", "istio-http/1.1", "istio-h2", ""}
    	modes := []string{"STRICT", "PERMISSIVE", "DISABLE"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    			// First, we build the standard cluster. We match on the SNI matching the cluster name
    			// (per the spec of AUTO_PASSTHROUGH), as well as all possible Istio mTLS ALPNs. This,
    			// along with filtering out plaintext destinations in EDS, ensures that our requests will
    			// always hit an Istio mTLS filter chain on the inbound side. As a result, it should not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    )
    
    // A set of pre-allocated variables related to protocol sniffing logic for
    // propagating the ALPN to upstreams
    var (
    	// These are sniffed by the HTTP Inspector in the outbound listener
    	// We need to forward these ALPNs to upstream so that the upstream can
    	// properly use an HTTP or TCP listener
    	plaintextHTTPALPNs = func() []string {
    		if features.HTTP10 {
    			// If HTTP 1.0 is enabled, we will match it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top