1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 22:32:06 +01:00

Set name of local SOCKS5 proxy thread

This commit is contained in:
Florian Schmaus 2018-05-13 19:37:41 +02:00
parent 929361f35b
commit 98a029e9c7

View file

@ -210,6 +210,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.start(); this.serverThread.start();
} }
} }