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

Skip to content
Snippets Groups Projects
Commit 72c404c4 authored by zzz's avatar zzz
Browse files

* NTCP: Fix NPE (ticket #996)

   (hopefully)
parent cd91a6b2
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,8 @@ class NTCPConnection {
private long _lastReceiveTime;
private long _lastRateUpdated;
private final long _created;
private long _nextMetaTime;
// prevent sending meta before established
private long _nextMetaTime = Long.MAX_VALUE;
private int _consecutiveZeroReads;
private static final int BLOCK_SIZE = 16;
......
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