1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-24 12:34:52 +02:00

Make Socks5Proxy try other ports if 7777 is already in use

by setting the default value to '-7777' (negative values mean that the
next port number will be tried if the current one is in use).
This commit is contained in:
Florian Schmaus 2014-08-05 09:32:13 +02:00
parent d65d239550
commit 5c2f051c1c

View file

@ -73,7 +73,12 @@ public class Socks5Proxy {
private static Socks5Proxy socks5Server;
private static boolean localSocks5ProxyEnabled = true;
private static int localSocks5ProxyPort = 7777;
/**
* The port of the local Socks5 Proxy. If this value is negative, the next ports will be tried
* until a unused is found.
*/
private static int localSocks5ProxyPort = -7777;
/* reusable implementation of a SOCKS5 proxy server process */
private Socks5ServerProcess serverProcess;