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

Skip to content
Snippets Groups Projects
Verified Commit 51560a8e authored by zzz's avatar zzz
Browse files

i2ptunnel: Disable shared clients (DSA) (part 2)

missed case in 2020-12-29 checkin
parent ec89a80e
No related branches found
No related tags found
No related merge requests found
...@@ -291,10 +291,13 @@ public abstract class I2PTunnelClientBase extends I2PTunnelTask implements Runna ...@@ -291,10 +291,13 @@ public abstract class I2PTunnelClientBase extends I2PTunnelTask implements Runna
_socketManagerState = SocketManagerState.INIT; _socketManagerState = SocketManagerState.INIT;
// We could be here a LONG time, holding the lock // We could be here a LONG time, holding the lock
socketManager = buildSocketManager(tunnel, pkf); socketManager = buildSocketManager(tunnel, pkf);
/*
since we enabled ratchet by default, we're not compatible with ancient servers anyway.
// FIXME may not be the right place for this // FIXME may not be the right place for this
I2PSession sub = addSubsession(tunnel); I2PSession sub = addSubsession(tunnel);
if (sub != null && _log.shouldLog(Log.WARN)) if (sub != null && _log.shouldLog(Log.WARN))
_log.warn("Added subsession " + sub); _log.warn("Added subsession " + sub);
*/
} else { } else {
if (_log.shouldLog(Log.INFO)) if (_log.shouldLog(Log.INFO))
_log.info(tunnel.getClientOptions().getProperty("inbound.nickname") + ": Not building a new socket manager since the old one is open [s=" + s + "]"); _log.info(tunnel.getClientOptions().getProperty("inbound.nickname") + ": Not building a new socket manager since the old one is open [s=" + s + "]");
......
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