Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for listenerfilter (0.26 sec)

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

    	}
    	lb.authzBuilder = oldBuilder
    	accessLogBuilder.setListenerAccessLog(lb.push, lb.node, l, istionetworking.ListenerClassSidecarInbound)
    	l.ListenerFilters = append(l.ListenerFilters, xdsfilters.OriginalDestination)
    	// TODO: Exclude inspectors from some inbound ports.
    	l.ListenerFilters = append(l.ListenerFilters, populateListenerFilters(lb.node, l, true)...)
    	return []*listener.Listener{terminate, l}
    }
    
    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/listener_waypoint.go

    		}
    	}
    	l := &listener.Listener{
    		Name:              MainInternalName,
    		ListenerSpecifier: &listener.Listener_InternalListener{InternalListener: &listener.Listener_InternalListenerConfig{}},
    		ListenerFilters: []*listener.ListenerFilter{
    			xdsfilters.OriginalDestination,
    			// TODO: This may affect the data path due to the server-first protocols triggering a time-out. Need exception filter.
    			xdsfilters.HTTPInspector,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		} else {
    			if !isHTTPFilterChain(l.FilterChains[0]) {
    				t.Fatalf("expected http filter chain, found %s", l.FilterChains[1].Filters[0].Name)
    			}
    			if len(l.ListenerFilters) > 0 {
    				t.Fatalf("expected %d listener filter, found %d", 0, len(l.ListenerFilters))
    			}
    		}
    	}
    }
    
    func TestGetActualWildcardAndLocalHost(t *testing.T) {
    	tests := []struct {
    		name     string
    		proxy    *model.Proxy
    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. pilot/pkg/networking/core/listenertest/match.go

    	}
    }
    
    func VerifyListener(t test.Failer, l *listener.Listener, lt ListenerTest) {
    	t.Helper()
    	haveFilters := []string{}
    	for _, lf := range l.ListenerFilters {
    		haveFilters = append(haveFilters, lf.Name)
    	}
    
    	// Check ListenerFilters
    
    	if lt.Filters != nil {
    		if lt.TotalMatch {
    			assert.Equal(t, lt.Filters, haveFilters, l.Name+": listener filters should be equal")
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      description: Applies only to `SIDECAR_INBOUND` context.
                                      type: string
                                  type: object
                                listenerFilter:
                                  description: Match a specific listener filter.
                                  type: string
                                name:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                      description: Applies only to `SIDECAR_INBOUND` context.
                                      type: string
                                  type: object
                                listenerFilter:
                                  description: Match a specific listener filter.
                                  type: string
                                name:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. src/os/exec/exec_test.go

    		if testing.Short() && i >= 3 {
    			break
    		}
    		la := listen()
    		ca := helperCommand(t, "describefiles")
    		ca.ExtraFiles = []*os.File{listenerFile(la)}
    		lb := listen()
    		cb := helperCommand(t, "describefiles")
    		cb.ExtraFiles = []*os.File{listenerFile(lb)}
    		ares := make(chan string)
    		bres := make(chan string)
    		go runCommand(ca, ares)
    		go runCommand(cb, bres)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top