Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for destinationSubnets (0.25 sec)

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

    					// If its bound to a unix domain socket, then ignore the CIDR matches
    					// Unix domain socket bound ports have Port value set to 0
    					if len(match.DestinationSubnets) > 0 && listenPort.Port > 0 {
    						destinationCIDRs = match.DestinationSubnets
    					}
    					matchHash := hashRuntimeTLSMatchPredicates(match)
    					if !matchHasBeenHandled.Contains(matchHash) {
    						out = append(out, &filterChainOpts{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    		}
    	}
    	return matchingHosts
    }
    
    func convertTLSMatchToL4Match(tlsMatch *networking.TLSMatchAttributes) *networking.L4MatchAttributes {
    	return &networking.L4MatchAttributes{
    		DestinationSubnets: tlsMatch.DestinationSubnets,
    		Port:               tlsMatch.Port,
    		SourceLabels:       tlsMatch.SourceLabels,
    		Gateways:           tlsMatch.Gateways,
    		SourceNamespace:    tlsMatch.SourceNamespace,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top