Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for VirtualInboundCatchAllHTTPFilterChainName (0.52 sec)

  1. pilot/pkg/model/listener.go

    	// VirtualInboundListenerName is the name for traffic capture listener
    	VirtualInboundListenerName = "virtualInbound"
    
    	// VirtualInboundCatchAllHTTPFilterChainName is the name of the catch all http filter chain
    	VirtualInboundCatchAllHTTPFilterChainName = "virtualInbound-catchall-http"
    )
    
    const (
    
    	// HBoneInboundListenPort is the port on which incoming HBone traffic will be captured.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 10 17:24:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder_test.go

    		for k, v := range byListenerName {
    			if k == model.VirtualInboundListenerName && v != 3 {
    				t.Fatalf("expect virtual listener has 3 passthrough filter chains, found %d", v)
    			}
    			if k == model.VirtualInboundCatchAllHTTPFilterChainName && v != 2 {
    				t.Fatalf("expect virtual listener has 2 passthrough filter chains, found %d", v)
    			}
    		}
    
    		if tt.useExactBalance {
    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/networking/core/listener_inbound.go

    		// A bit arbitrary, but for backwards compatibility fixed names are used
    		// Passthrough chains have fix names based on protocol
    		if protocol == istionetworking.ListenerProtocolHTTP {
    			return model.VirtualInboundCatchAllHTTPFilterChainName
    		}
    		return model.VirtualInboundListenerName
    	}
    	// Everything else derived from bind/port
    	return getListenerName(cc.bind, int(cc.port.TargetPort), istionetworking.TransportProtocolTCP)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    				TotalMatch: true,
    			},
    			{
    				Name:           model.VirtualInboundCatchAllHTTPFilterChainName,
    				Type:           listenertest.MTLSHTTP,
    				HTTPFilters:    httpFilters,
    				NetworkFilters: httpNetworkFilters,
    				TotalMatch:     true,
    			},
    			{
    				Name:           model.VirtualInboundCatchAllHTTPFilterChainName,
    				Type:           listenertest.PlainHTTP,
    				HTTPFilters:    httpFilters,
    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