Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for TransportProtocol (0.31 sec)

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

    func (cc inboundChainConfig) ToFilterChainMatch(opt FilterChainMatchOptions) *listener.FilterChainMatch {
    	match := &listener.FilterChainMatch{}
    	match.ApplicationProtocols = opt.ApplicationProtocols
    	match.TransportProtocol = opt.TransportProtocol
    	if cc.port.TargetPort > 0 {
    		match.DestinationPort = &wrappers.UInt32Value{Value: cc.port.TargetPort}
    	}
    	return match
    }
    
    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/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)
  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. 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)
  7. 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)
Back to top