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

Skip to content
Snippets Groups Projects
Commit 30a666c8 authored by zzz's avatar zzz
Browse files

Streaming: Don't queue a message for an unknown connection on the SYN queue

            if it has a send ID set, it must be for a recently closed connection
parent 9a00621f
No related branches found
No related tags found
No related merge requests found
...@@ -105,8 +105,8 @@ class PacketHandler { ...@@ -105,8 +105,8 @@ class PacketHandler {
displayPacket(packet, "RECV", "wsize " + con.getOptions().getWindowSize() + " rto " + con.getOptions().getRTO()); displayPacket(packet, "RECV", "wsize " + con.getOptions().getWindowSize() + " rto " + con.getOptions().getRTO());
receiveKnownCon(con, packet); receiveKnownCon(con, packet);
} else { } else {
receiveUnknownCon(packet, sendId, queueIfNoConn);
displayPacket(packet, "UNKN", null); displayPacket(packet, "UNKN", null);
receiveUnknownCon(packet, sendId, queueIfNoConn);
} }
// Don't log here, wait until we have the conn to make the dumps easier to follow // Don't log here, wait until we have the conn to make the dumps easier to follow
//((PacketLocal)packet).logTCPDump(true); //((PacketLocal)packet).logTCPDump(true);
...@@ -285,6 +285,13 @@ class PacketHandler { ...@@ -285,6 +285,13 @@ class PacketHandler {
return; return;
} }
} }
} else {
// if it has a send ID, it's almost certainly for a recently removed connection.
if (_log.shouldLog(Log.WARN))
_log.warn("Dropping pkt w/ send ID but no con found, recently disconnected? " + packet);
// don't bother sending reset
packet.releasePayload();
return;
} }
if (packet.isFlagSet(Packet.FLAG_SYNCHRONIZE)) { if (packet.isFlagSet(Packet.FLAG_SYNCHRONIZE)) {
......
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