update to latest jtorctl with patches for thread, error handling
This commit is contained in:
parent
f3a9cbd84c
commit
8df98f5618
|
@ -1 +1 @@
|
|||
Subproject commit 319377b33117035155715b9207a7b41cbacef3a7
|
||||
Subproject commit 9f8affffbb03737b5606212c3ade9a1114df755f
|
|
@ -1020,7 +1020,10 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
|||
torConnSocket = new Socket(IP_LOCALHOST, controlPort);
|
||||
torConnSocket.setSoTimeout(CONTROL_SOCKET_TIMEOUT);
|
||||
|
||||
conn = TorControlConnection.getConnection(torConnSocket);
|
||||
boolean oo = true;
|
||||
|
||||
conn = new TorControlConnection(torConnSocket);
|
||||
conn.launchThread(true);//is daemon
|
||||
|
||||
logNotice( "SUCCESS connected to Tor control port");
|
||||
|
||||
|
|
Loading…
Reference in New Issue