Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for TransportProtocol (0.24 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    			if sni == match.Sni {
    				sniMatched = true
    				break
    			}
    		}
    		if !sniMatched {
    			return false
    		}
    	}
    
    	if match.TransportProtocol != "" {
    		if fc.FilterChainMatch == nil || fc.FilterChainMatch.TransportProtocol != match.TransportProtocol {
    			return false
    		}
    	}
    
    	if match.ApplicationProtocols != "" {
    		if fc.FilterChainMatch == nil {
    			return false
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    func TestBuildGatewayListenerTlsContext(t *testing.T) {
    	testCases := []struct {
    		name              string
    		server            *networking.Server
    		result            *auth.DownstreamTlsContext
    		transportProtocol istionetworking.TransportProtocol
    		mesh              *meshconfig.MeshConfig
    	}{
    		{
    			name: "mesh SDS enabled, tls mode ISTIO_MUTUAL",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    		sni := host.Name(input.Sni)
    		for _, s := range fc.GetServerNames() {
    			if sni.SubsetOf(host.Name(s)) {
    				return true
    			}
    		}
    		return false
    	})
    	chains = filter("TransportProtocol", chains, func(fc *listener.FilterChainMatch) bool {
    		return fc.GetTransportProtocol() == ""
    	}, func(fc *listener.FilterChainMatch) bool {
    		if !hasTLSInspector {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    			}
    			additionalAddresses = append(additionalAddresses, extraAddress)
    		}
    	}
    	return additionalAddresses
    }
    
    func BuildNetworkAddress(bind string, port uint32, transport istionetworking.TransportProtocol) *core.Address {
    	if port == 0 {
    		return nil
    	}
    	return &core.Address{
    		Address: &core.Address_SocketAddress{
    			SocketAddress: &core.SocketAddress{
    				Address:  bind,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. 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)
  6. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                      description: The SNI value used by a filter chain's
                                        match condition.
                                      type: string
                                    transportProtocol:
                                      description: Applies only to `SIDECAR_INBOUND` context.
                                      type: string
                                  type: object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      description: The SNI value used by a filter chain's
                                        match condition.
                                      type: string
                                    transportProtocol:
                                      description: Applies only to `SIDECAR_INBOUND` context.
                                      type: string
                                  type: object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                                      description: The SNI value used by a filter chain's
                                        match condition.
                                      type: string
                                    transportProtocol:
                                      description: Applies only to `SIDECAR_INBOUND` context.
                                      type: string
                                  type: object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    name: description: The filter name to match on. type: string type: object type: object name: description: The name assigned to the filter chain. type: string sni: description: The SNI value used by a filter chain's match condition. type: string transportProtocol: description: Applies only to `SIDECAR_INBOUND` context. type: string type: object listenerFilter: description: Match a specific listener filter. type: string name: description: Match a specific listener by its name. type: string portName: type:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top