Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pilot/pkg/model/gateway.go

    				if s.GetTls().GetMode() == networking.ServerTLSSettings_AUTO_PASSTHROUGH {
    					hosts.InsertAll(s.Hosts...)
    				}
    			}
    		}
    	}
    	return hosts
    }
    
    func udpSupportedPort(number uint32, instances []ServiceTarget) bool {
    	for _, w := range instances {
    		if int(number) == w.Port.Port && w.Port.Protocol == protocol.UDP {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top