Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TrafficInterceptionMode (0.3 sec)

  1. pilot/pkg/model/context.go

    	InterceptionNone TrafficInterceptionMode = "NONE"
    
    	// InterceptionTproxy implies traffic intercepted by IPtables with TPROXY mode
    	InterceptionTproxy TrafficInterceptionMode = "TPROXY"
    
    	// InterceptionRedirect implies traffic intercepted by IPtables with REDIRECT mode
    	// This is our default mode
    	InterceptionRedirect TrafficInterceptionMode = "REDIRECT"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  2. pilot/pkg/networking/core/listener_test.go

    }
    
    func TestVirtualListeners_TrafficRedirectionEnabled(t *testing.T) {
    	cases := []struct {
    		name string
    		mode model.TrafficInterceptionMode
    	}{
    		{
    			name: "empty value",
    			mode: "",
    		},
    		{
    			name: "unknown value",
    			mode: model.TrafficInterceptionMode("UNKNOWN_VALUE"),
    		},
    		{
    			name: string(model.InterceptionTproxy),
    			mode: model.InterceptionTproxy,
    		},
    		{
    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