Browse Source

don't sedn explicit Ack if no NACKs only

pull/539/head
orignal 8 years ago
parent
commit
096927beed
  1. 3
      Streaming.cpp

3
Streaming.cpp

@ -394,9 +394,12 @@ namespace stream @@ -394,9 +394,12 @@ namespace stream
}
}
if (packets.size () > 0)
{
if (m_SavedPackets.empty ()) // no NACKS
{
m_IsAckSendScheduled = false;
m_AckSendTimer.cancel ();
}
bool isEmpty = m_SentPackets.empty ();
auto ts = i2p::util::GetMillisecondsSinceEpoch ();
for (auto it: packets)

Loading…
Cancel
Save