- fix test

- final
- last week's history
This commit is contained in:
zzz
2014-07-15 14:30:19 +00:00
parent 0998738e94
commit 8b2ffada10
3 changed files with 9 additions and 3 deletions

View File

@@ -1,6 +1,11 @@
2014-07-15 str4d
* I2CP: Stubs for I2CP connections over Unix domain sockets
2014-07-11 zzz
* Datagrams:
- Redefine the repliable datagram signature for non-DSA_SHA1 sig types;
was the sig of the SHA-256 of the payload, now the sig of the payload itself.
2014-07-03 zzz
* Base64:
- Catch numerous decoding errors that were previously misdecoded (ticket #1318)

View File

@@ -48,7 +48,7 @@ import net.i2p.util.SystemVersion;
*/
class ClientManager {
private final Log _log;
protected List<ClientListenerRunner> _listeners;
protected final List<ClientListenerRunner> _listeners;
// Destination --> ClientConnectionRunner
// Locked for adds/removes but not lookups
private final Map<Destination, ClientConnectionRunner> _runners;

View File

@@ -36,9 +36,10 @@ class LocalClientManager extends ClientManager {
@Override
protected void startListeners() {
_listener = new LocalClientListenerRunner(_ctx, this, _port);
Thread t = new I2PThread(_listener, "ClientListener:" + _port, true);
ClientListenerRunner listener = new LocalClientListenerRunner(_ctx, this, _port);
Thread t = new I2PThread(listener, "ClientListener:" + _port, true);
t.start();
_listeners.add(listener);
_isStarted = true;
}