Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for inspectors (0.48 sec)

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

    		inspectors[int(port)] = i
    	}
    
    	// Enable TLS inspector on any ports we need it
    	if needsTLS(inspectors) {
    		lf = append(lf, buildTLSInspector(inspectors))
    	}
    
    	// Note: the HTTP inspector should be after TLS inspector.
    	// If TLS inspector sets transport protocol to tls, the http inspector
    	// won't inspect the packet.
    	if needsHTTP(inspectors) {
    		lf = append(lf, buildHTTPInspector(inspectors))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder_test.go

    				81: true,
    				// Even for passthrough, we do not need HTTP inspector because it is handled by TLS inspector
    				1000: true,
    			},
    			tls: map[int]bool{
    				// strict mode: inspector is set everywhere.
    				80:   false,
    				82:   false,
    				81:   false,
    				1000: false,
    			},
    		},
    	}
    	for _, tt := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    		return
    	}
    	result.ListenerMatched = l.Name
    
    	hasTLSInspector := hasFilterOnPort(l, xdsfilters.TLSInspector.Name, input.Port)
    	if !hasTLSInspector {
    		// Without tls inspector, Envoy would not read the ALPN in the TLS handshake
    		// HTTP inspector still may set it though
    		input.Alpn = ""
    	}
    
    	// Apply listener filters
    	if hasFilterOnPort(l, xdsfilters.HTTPInspector.Name, input.Port) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top