Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TransportProtocol (0.24 sec)

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

    	proxy *model.Proxy, mesh *meshconfig.MeshConfig, transportProtocol istionetworking.TransportProtocol, gatewayTCPServerWithTerminatingTLS bool,
    ) *auth.DownstreamTlsContext {
    	alpnByTransport := util.ALPNHttp
    	if transportProtocol == istionetworking.TransportProtocolQUIC {
    		alpnByTransport = util.ALPNHttp3OverQUIC
    	} else if transportProtocol == istionetworking.TransportProtocolTCP &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    				ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Listener{
    					Listener: &networking.EnvoyFilter_ListenerMatch{
    						PortNumber:  80,
    						FilterChain: &networking.EnvoyFilter_ListenerMatch_FilterChainMatch{TransportProtocol: "tls"},
    					},
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_REMOVE,
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_LISTENER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    	}
    }
    
    func verifyHTTPFilterChainMatch(t *testing.T, fc *listener.FilterChain) {
    	t.Helper()
    	if fc.FilterChainMatch.TransportProtocol != xdsfilters.RawBufferTransportProtocol {
    		t.Fatalf("expect %q transport protocol, found %q", xdsfilters.RawBufferTransportProtocol, fc.FilterChainMatch.TransportProtocol)
    	}
    
    	if !reflect.DeepEqual(plaintextHTTPALPNs, fc.FilterChainMatch.ApplicationProtocols) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top