I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit f1c4a859 authored by sponge's avatar sponge
Browse files

Code cleanup in I2PSocketManagerFull and I2PServerSocketFull

BUGFIX ConnectionHandler had a comparason bug that caused it to block when infact it was asked NOT to block
parent 0a5eeed3
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,11 @@ class ConnectionHandler {
try { _synQueue.wait(); } catch (InterruptedException ie) {}
} else {
long remaining = expiration - _context.clock().now();
if (remaining < 0)
// BUGFIX
// The specified amount of real time has elapsed, more or less.
// If timeout is zero, however, then real time is not taken into consideration
// and the thread simply waits until notified.
if (remaining < 1)
break;
try { _synQueue.wait(remaining); } catch (InterruptedException ie) {}
}
......
package net.i2p.client.streaming;
import java.net.SocketTimeoutException;
import java.util.logging.Level;
import java.util.logging.Logger;
import net.i2p.I2PException;
/**
......
......@@ -128,8 +128,8 @@ public class I2PSocketManagerFull implements I2PSocketManager {
return sock;
} else {
if(_connectionManager.MgetSoTimeout() == -1) {
return null;
}
return null;
}
throw new SocketTimeoutException("I2PSocket timed out");
}
}
......
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