Browse Source

send proper send time for NACK reply

pull/163/head
orignal 10 years ago
parent
commit
4b82e90ffb
  1. 2
      Streaming.cpp

2
Streaming.cpp

@ -230,6 +230,8 @@ namespace stream
if (nacked) if (nacked)
{ {
LogPrint (eLogDebug, "Packet ", seqn, " NACK"); LogPrint (eLogDebug, "Packet ", seqn, " NACK");
(*it)->numResendAttempts++;
(*it)->sendTime = ts;
SendPackets (std::vector<Packet *> { *it }); SendPackets (std::vector<Packet *> { *it });
it++; it++;
continue; continue;

Loading…
Cancel
Save