Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for genListenerAddress (0.1 sec)

  1. tools/istio-iptables/pkg/validation/validator.go

    		} else {
    			log.Errorf("Validation failed: %v", err)
    		}
    		return err
    	}
    }
    
    // TODO(lambdai): remove this if iptables only need to redirect to outbound proxy port on A call A
    func genListenerAddress(ip netip.Addr, ports []string) []string {
    	addresses := make([]string, 0, len(ports))
    	for _, port := range ports {
    		addresses = append(addresses, net.JoinHostPort(ip.String(), port))
    	}
    	return addresses
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top