mirror of
https://github.com/moparisthebest/SSLDroid
synced 2024-11-27 03:12:18 -05:00
Try to wait() for the workerthreads to finish when stopping the
service, this probably needs more thought in the future Signed-off-by: Balint Kovacs <blint@blint.hu>
This commit is contained in:
parent
780d221b2f
commit
82da2651b2
@ -186,11 +186,19 @@ public class TcpProxyServerThread extends Thread {
|
||||
}
|
||||
|
||||
public void run() {
|
||||
while (true) {
|
||||
while (true) {
|
||||
try {
|
||||
|
||||
Thread fromBrowserToServer = null;
|
||||
Thread fromServerToBrowser = null;
|
||||
|
||||
if (isInterrupted()){
|
||||
Log.d("SSLDroid", "Interrupted server thread, closing sockets...");
|
||||
ss.close();
|
||||
if (fromBrowserToServer != null)
|
||||
fromBrowserToServer.wait();
|
||||
if (fromServerToBrowser != null)
|
||||
fromServerToBrowser.wait();
|
||||
return;
|
||||
}
|
||||
// accept the connection from my client
|
||||
@ -220,16 +228,16 @@ public class TcpProxyServerThread extends Thread {
|
||||
+ tunnelHost + " ...");
|
||||
|
||||
// relay the stuff thru
|
||||
Thread fromBrowserToServer = new Relay(
|
||||
fromBrowserToServer = new Relay(
|
||||
sc.getInputStream(), st.getOutputStream());
|
||||
Thread fromServerToBrowser = new Relay(
|
||||
fromServerToBrowser = new Relay(
|
||||
st.getInputStream(), sc.getOutputStream());
|
||||
|
||||
fromBrowserToServer.start();
|
||||
fromServerToBrowser.start();
|
||||
|
||||
} catch (Exception ee) {
|
||||
Log.d("SSLDroid", "Ouch: " + ee.toString());
|
||||
Log.d("SSLDroid", "Ouch: " + ee.getMessage());
|
||||
createNotification(ee.getMessage(), "Ouch: "+ee.toString());
|
||||
//ttg.doLog("Ouch: " + ee.toString());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user