Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetDefaultFilterChain (0.16 sec)

  1. pilot/test/xdstest/extract.go

    	var sockets []*core.TransportSocket
    	for _, fc := range l.GetFilterChains() {
    		if fc.GetTransportSocket() != nil {
    			sockets = append(sockets, fc.GetTransportSocket())
    		}
    	}
    	if ts := l.GetDefaultFilterChain().GetTransportSocket(); ts != nil {
    		sockets = append(sockets, ts)
    	}
    	for _, s := range sockets {
    		tl := UnmarshalAny[tls.DownstreamTlsContext](t, s.GetTypedConfig())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    	for i, fc := range lis.FilterChains {
    		if fc.Filters == nil {
    			continue
    		}
    		patchFilterChain(patchContext, patches, lis, lis.FilterChains[i], &filterChainsRemoved)
    	}
    	if fc := lis.GetDefaultFilterChain(); fc.GetFilters() != nil {
    		removed := false
    		patchFilterChain(patchContext, patches, lis, fc, &removed)
    		if removed {
    			lis.DefaultFilterChain = nil
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top