1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-22 12:02:05 +01:00

Merge branch '4.3'

This commit is contained in:
Florian Schmaus 2018-12-27 14:43:31 +01:00
commit ee8728479d

View file

@ -212,6 +212,7 @@ public final class Socks5Proxy {
if (this.serverSocket != null) { if (this.serverSocket != null) {
this.serverThread = new Thread(this.serverProcess); this.serverThread = new Thread(this.serverProcess);
this.serverThread.setName("Smack Local SOCKS5 Proxy"); this.serverThread.setName("Smack Local SOCKS5 Proxy");
this.serverThread.setDaemon(true);
this.serverThread.start(); this.serverThread.start();
} }
} }