Skip to content
Snippets Groups Projects
Commit a02ca4b3 authored by akwizgran's avatar akwizgran
Browse files

Close invitation connections after use.

parent 4d590f45
No related branches found
No related tags found
No related merge requests found
......@@ -97,5 +97,7 @@ class AliceConnector extends Connector {
Thread.currentThread().interrupt();
return;
}
// That's all, folks!
tryToClose(conn, false);
}
}
\ No newline at end of file
......@@ -97,5 +97,7 @@ class BobConnector extends Connector {
Thread.currentThread().interrupt();
return;
}
// That's all, folks!
tryToClose(conn, false);
}
}
......@@ -90,6 +90,7 @@ abstract class Connector extends Thread {
protected void tryToClose(DuplexTransportConnection conn,
boolean exception) {
try {
if(LOG.isLoggable(INFO)) LOG.info("Closing connection");
conn.dispose(exception, true);
} catch(IOException e) {
if(LOG.isLoggable(WARNING)) LOG.log(WARNING, e.toString(), e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment