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

Skip to content
Snippets Groups Projects
Commit 2c7006e9 authored by zzz's avatar zzz
Browse files

Streaming; Disable fail-fast for now. It's failing on leaseset lookup

far too often. Need to fix that first.
parent b1caa8d5
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,7 @@ class PacketQueue implements SendMessageStatusListener { ...@@ -44,6 +44,7 @@ class PacketQueue implements SendMessageStatusListener {
private static final int FINAL_TAGS_TO_SEND = 4; private static final int FINAL_TAGS_TO_SEND = 4;
private static final int FINAL_TAG_THRESHOLD = 2; private static final int FINAL_TAG_THRESHOLD = 2;
private static final long REMOVE_EXPIRED_TIME = 67*1000; private static final long REMOVE_EXPIRED_TIME = 67*1000;
private static final boolean ENABLE_STATUS_LISTEN = false;
public PacketQueue(I2PAppContext context, I2PSession session, ConnectionManager mgr) { public PacketQueue(I2PAppContext context, I2PSession session, ConnectionManager mgr) {
_context = context; _context = context;
...@@ -134,7 +135,7 @@ class PacketQueue implements SendMessageStatusListener { ...@@ -134,7 +135,7 @@ class PacketQueue implements SendMessageStatusListener {
if (con != null) { if (con != null) {
if (con.isInbound()) if (con.isInbound())
options.setSendLeaseSet(false); options.setSendLeaseSet(false);
else else if (ENABLE_STATUS_LISTEN)
listenForStatus = true; listenForStatus = true;
} }
options.setTagsToSend(INITIAL_TAGS_TO_SEND); options.setTagsToSend(INITIAL_TAGS_TO_SEND);
......
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