forked from I2P_Developers/i2p.i2p
a chunk of streaming lib updates (cwin calc & timed win, pings influencing rtt, etc)
This commit is contained in:
@@ -44,7 +44,11 @@ class PacketQueue {
|
||||
tagsSent = new HashSet();
|
||||
try {
|
||||
// cache this from before sendMessage
|
||||
String conStr = packet.getConnection() + "";
|
||||
String conStr = (packet.getConnection() != null ? packet.getConnection().toString() : "");
|
||||
if (packet.getAckTime() > 0) {
|
||||
_log.debug("Not resending " + packet);
|
||||
return;
|
||||
}
|
||||
// this should not block!
|
||||
long begin = _context.clock().now();
|
||||
boolean sent = _session.sendMessage(packet.getTo(), _buf, 0, size, keyUsed, tagsSent);
|
||||
|
||||
Reference in New Issue
Block a user