Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for matchAddress (0.09 sec)

  1. pilot/pkg/simulation/traffic.go

    	}
    	// First find exact match for the IP/Port, then fallback to wildcard IP/Port
    	// There is no wildcard port
    	for _, l := range listeners {
    		if matchAddress(l.GetAddress(), input.Address, input.Port) {
    			return l
    		}
    	}
    	for _, l := range listeners {
    		if matchAddress(l.GetAddress(), "0.0.0.0", input.Port) {
    			return l
    		}
    	}
    
    	// Fallback to the outbound listener
    	// TODO - support inbound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top