Home
last modified time | relevance | path

Searched refs:tryPort (Results 1 – 5 of 5) sorted by relevance

/dports/net/zerotier/ZeroTierOne-1.8.3/osdep/
H A DPortMapper.cpp104 int tryPort = (int)localPort + tries; in threadMain() local
105 if (tryPort >= 65535) in threadMain()
106 tryPort = (tryPort - 65535) + 1025; in threadMain()
144 …sendnewportmappingrequest(&natpmp,NATPMP_PROTOCOL_UDP,localPort,tryPort,(ZT_PORTMAPPER_REFRESH_DEL… in threadMain()
225 int tryPort = (int)localPort + tries; in threadMain() local
226 if (tryPort >= 65535) in threadMain()
227 tryPort = (tryPort - 65535) + 1025; in threadMain()
228 OSUtils::ztsnprintf(outport,sizeof(outport),"%u",tryPort); in threadMain()
252 tmp.setPort(tryPort); in threadMain()
267 tmp.setPort(tryPort); in threadMain()
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/parosproxy/paros/core/proxy/
H A DProxyServer.java239 int tryPort; in promptForPort() local
243 for (tryPort = port + 1; tryPort < port + 21; tryPort++) { in promptForPort()
244 try (ServerSocket trySocket = createServerSocket(ip, tryPort)) { in promptForPort() argument
252 ProxyPortRetryPanel pprp = new ProxyPortRetryPanel(retryMessage, tryPort); in promptForPort()
/dports/sysutils/javaservicewrapper/wrapper_3.5.45_src/src/java/org/tanukisoftware/wrapper/
H A DWrapperManager.java5193 int tryPort; in openBackendSocket() local
5197 tryPort = m_jvmPort; in openBackendSocket()
5202 tryPort = m_jvmPortMin; in openBackendSocket()
5226 new Integer( tryPort ), e.toString() ) ); in openBackendSocket()
5246 new Integer( tryPort ), new Integer( m_port ) ) ); in openBackendSocket()
5282 new Integer( tryPort ) ) ); in openBackendSocket()
5320 tryPort = m_jvmPortMin; in openBackendSocket()
5325 tryPort++; in openBackendSocket()
5328 while ( tryPort <= m_jvmPortMax ); in openBackendSocket()
5332 if ( ( m_jvmPort >= 0 ) && ( m_jvmPort != tryPort ) ) in openBackendSocket()
[all …]
/dports/ftp/ncftp3/ncftp-3.2.6/libncftp/
H A Dftp.c1038 tryPort: in OpenDataConnection()
1099 goto tryPort; in OpenDataConnection()
/dports/devel/spark/spark-2.1.1/core/src/main/scala/org/apache/spark/util/
H A DUtils.scala2206 val tryPort = if (startPort == 0) { constant
2213 val (service, port) = startService(tryPort)
2228 logWarning(s"Service$serviceString could not bind on port $tryPort. " +