Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DestinationPort (0.26 sec)

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

    	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
    }
    
    func (lb *ListenerBuilder) buildInboundHBONEListeners() []*listener.Listener {
    	routes := []*route.Route{{
    		Match: &route.RouteMatch{
    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/simulation/traffic.go

    func (sim *Simulation) matchFilterChain(chains []*listener.FilterChain, defaultChain *listener.FilterChain,
    	input Call, hasTLSInspector bool,
    ) (*listener.FilterChain, error) {
    	chains = filter("DestinationPort", chains, func(fc *listener.FilterChainMatch) bool {
    		return fc.GetDestinationPort() == nil
    	}, func(fc *listener.FilterChainMatch) bool {
    		return int(fc.GetDestinationPort().GetValue()) == 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)
  3. pilot/pkg/networking/core/listener_test.go

    	virtualListener := xdstest.ExtractListener(model.VirtualInboundListenerName, listeners)
    	for _, fc := range virtualListener.FilterChains {
    		if fc.FilterChainMatch.DestinationPort.GetValue() == 15021 {
    			t.Fatalf("port 15021 should not be included in inbound listener")
    		}
    	}
    }
    
    func testInboundListenerConfigWithGrpc(t *testing.T, proxy *model.Proxy, services ...*model.Service) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    applicationProtocols:
                                      description: Applies only to sidecars.
                                      type: string
                                    destinationPort:
                                      description: The destination_port value used by
                                        a filter chain's match condition.
                                      maximum: 4294967295
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                                    applicationProtocols:
                                      description: Applies only to sidecars.
                                      type: string
                                    destinationPort:
                                      description: The destination_port value used by
                                        a filter chain's match condition.
                                      maximum: 4294967295
    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