forked from I2P_Developers/i2p.i2p
- fix test
- final - last week's history
This commit is contained in:
@@ -1,6 +1,11 @@
|
|||||||
2014-07-15 str4d
|
2014-07-15 str4d
|
||||||
* I2CP: Stubs for I2CP connections over Unix domain sockets
|
* 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
|
2014-07-03 zzz
|
||||||
* Base64:
|
* Base64:
|
||||||
- Catch numerous decoding errors that were previously misdecoded (ticket #1318)
|
- Catch numerous decoding errors that were previously misdecoded (ticket #1318)
|
||||||
|
@@ -48,7 +48,7 @@ import net.i2p.util.SystemVersion;
|
|||||||
*/
|
*/
|
||||||
class ClientManager {
|
class ClientManager {
|
||||||
private final Log _log;
|
private final Log _log;
|
||||||
protected List<ClientListenerRunner> _listeners;
|
protected final List<ClientListenerRunner> _listeners;
|
||||||
// Destination --> ClientConnectionRunner
|
// Destination --> ClientConnectionRunner
|
||||||
// Locked for adds/removes but not lookups
|
// Locked for adds/removes but not lookups
|
||||||
private final Map<Destination, ClientConnectionRunner> _runners;
|
private final Map<Destination, ClientConnectionRunner> _runners;
|
||||||
|
@@ -36,9 +36,10 @@ class LocalClientManager extends ClientManager {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void startListeners() {
|
protected void startListeners() {
|
||||||
_listener = new LocalClientListenerRunner(_ctx, this, _port);
|
ClientListenerRunner listener = new LocalClientListenerRunner(_ctx, this, _port);
|
||||||
Thread t = new I2PThread(_listener, "ClientListener:" + _port, true);
|
Thread t = new I2PThread(listener, "ClientListener:" + _port, true);
|
||||||
t.start();
|
t.start();
|
||||||
|
_listeners.add(listener);
|
||||||
_isStarted = true;
|
_isStarted = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user