Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ConflictsWith (0.12 sec)

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

    		len(chain.applicationProtocols) == 0 &&
    		len(chain.transportProtocol) == 0 &&
    		len(chain.destinationCIDRs) == 0
    }
    
    func (chain *filterChainOpts) conflictsWith(other *filterChainOpts) bool {
    	a, b := chain, other
    	if a == nil || b == nil {
    		return a == b
    	}
    	if a.transportProtocol != b.transportProtocol {
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top