|
|
|
|
@ -75,7 +75,7 @@ void EQStream::init(bool resetSession) {
|
|
|
|
|
sent_packet_count = 0;
|
|
|
|
|
received_packet_count = 0;
|
|
|
|
|
SequencedBase = 0;
|
|
|
|
|
NextSequencedSend = 0;
|
|
|
|
|
AverageDelta = 500;
|
|
|
|
|
|
|
|
|
|
if(GetExecutablePlatform() == ExePlatformWorld || GetExecutablePlatform() == ExePlatformZone) {
|
|
|
|
|
retransmittimer = Timer::GetCurrentTime();
|
|
|
|
|
@ -86,10 +86,6 @@ void EQStream::init(bool resetSession) {
|
|
|
|
|
if(uint16(SequencedBase + SequencedQueue.size()) != NextOutSeq) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "init Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "init Next Send Sequence is beyond the end of the queue NSS %d > SQ %d" __L, NextSequencedSend, SequencedQueue.size());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EQRawApplicationPacket *EQStream::MakeApplicationPacket(EQProtocolPacket *p)
|
|
|
|
|
@ -420,36 +416,33 @@ void EQStream::ProcessPacket(EQProtocolPacket *p)
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Pre-OOA Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Pre-OOA Next Send Sequence is beyond the end of the queue NSS %d > SQ %d" __L, NextSequencedSend, SequencedQueue.size());
|
|
|
|
|
}
|
|
|
|
|
//if the packet they got out of order is between our last acked packet and the last sent packet, then its valid.
|
|
|
|
|
if (CompareSequence(SequencedBase,seq) != SeqPast && CompareSequence(NextOutSeq,seq) == SeqPast) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Received OP_OutOfOrderAck for sequence %d, starting retransmit at the start of our unacked buffer (seq %d, was %d)." __L,
|
|
|
|
|
seq, SequencedBase, SequencedBase+NextSequencedSend);
|
|
|
|
|
seq, SequencedBase, SequencedBase+SequencedQueue.size());
|
|
|
|
|
|
|
|
|
|
bool retransmit_acked_packets = false;
|
|
|
|
|
if(GetExecutablePlatform() == ExePlatformWorld || GetExecutablePlatform() == ExePlatformZone) {
|
|
|
|
|
retransmit_acked_packets = RETRANSMIT_ACKED_PACKETS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!retransmit_acked_packets) {
|
|
|
|
|
uint16 sqsize = SequencedQueue.size();
|
|
|
|
|
uint16 index = seq - SequencedBase;
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "OP_OutOfOrderAck marking packet acked in queue (queue index = %d, queue size = %d)." __L, index, sqsize);
|
|
|
|
|
if (index < sqsize) {
|
|
|
|
|
std::deque<EQProtocolPacket *>::iterator sitr;
|
|
|
|
|
sitr = SequencedQueue.begin();
|
|
|
|
|
sitr += index;
|
|
|
|
|
(*sitr)->acked = true;
|
|
|
|
|
uint16 sqsize = SequencedQueue.size();
|
|
|
|
|
uint16 index = seq - SequencedBase;
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "OP_OutOfOrderAck marking packet acked in queue (queue index = %d, queue size = %d)." __L, index, sqsize);
|
|
|
|
|
if (index < sqsize) {
|
|
|
|
|
std::deque<EQProtocolPacket *>::iterator sitr;
|
|
|
|
|
sitr = SequencedQueue.begin();
|
|
|
|
|
sitr += index;
|
|
|
|
|
(*sitr)->acked = true;
|
|
|
|
|
// flag packets for a resend
|
|
|
|
|
uint16 count = 0;
|
|
|
|
|
uint32 timeout = AverageDelta * 2 + 100;
|
|
|
|
|
for (sitr = SequencedQueue.begin(); sitr != SequencedQueue.end() && count < index; ++sitr, ++count) {
|
|
|
|
|
if (!(*sitr)->acked && (*sitr)->sent_time > 0 && (((*sitr)->sent_time + timeout) < Timer::GetCurrentTime())) {
|
|
|
|
|
(*sitr)->sent_time = 0;
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "OP_OutOfOrderAck Flagging packet %d for retransmission" __L, SequencedBase + count);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(RETRANSMIT_TIMEOUT_MULT) {
|
|
|
|
|
retransmittimer = Timer::GetCurrentTime();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NextSequencedSend = 0;
|
|
|
|
|
} else {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Received OP_OutOfOrderAck for out-of-window %d. Window (%d->%d)." __L, seq, SequencedBase, NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
@ -458,9 +451,6 @@ void EQStream::ProcessPacket(EQProtocolPacket *p)
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Post-OOA Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Post-OOA Next Send Sequence is beyond the end of the queue NSS %d > SQ %d" __L, NextSequencedSend, SequencedQueue.size());
|
|
|
|
|
}
|
|
|
|
|
MOutboundQueue.unlock();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
@ -489,6 +479,7 @@ void EQStream::ProcessPacket(EQProtocolPacket *p)
|
|
|
|
|
} else {
|
|
|
|
|
retransmittimeout = ntohl(ClientStats->average_delta) * 2 * RETRANSMIT_TIMEOUT_MULT;
|
|
|
|
|
}
|
|
|
|
|
retransmittimeout += 300;
|
|
|
|
|
if(retransmittimeout > RETRANSMIT_TIMEOUT_MAX)
|
|
|
|
|
retransmittimeout = RETRANSMIT_TIMEOUT_MAX;
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Retransmit timeout recalculated to %dms" __L, retransmittimeout);
|
|
|
|
|
@ -631,9 +622,7 @@ void EQStream::SequencedPush(EQProtocolPacket *p)
|
|
|
|
|
if(uint16(SequencedBase + SequencedQueue.size()) != NextOutSeq) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Pre-Push Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Pre-Push Next Send Sequence is beyond the end of the queue NSS %d > SQ %d" __L, NextSequencedSend, SequencedQueue.size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Pushing sequenced packet %d of length %d. Base Seq is %d." __L, NextOutSeq, p->size, SequencedBase);
|
|
|
|
|
*(uint16 *)(p->pBuffer)=htons(NextOutSeq);
|
|
|
|
|
@ -643,9 +632,7 @@ if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
if(uint16(SequencedBase + SequencedQueue.size()) != NextOutSeq) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Push Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Push Next Send Sequence is beyond the end of the queue NSS %d > SQ %d" __L, NextSequencedSend, SequencedQueue.size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MOutboundQueue.unlock();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
@ -703,21 +690,15 @@ void EQStream::Write(int eq_fd)
|
|
|
|
|
// Place to hold the base packet t combine into
|
|
|
|
|
EQProtocolPacket *p=nullptr;
|
|
|
|
|
|
|
|
|
|
if(GetExecutablePlatform() == ExePlatformWorld || GetExecutablePlatform() == ExePlatformZone) {
|
|
|
|
|
// if we have a timeout defined and we have not received an ack recently enough, retransmit from beginning of queue
|
|
|
|
|
if (RETRANSMIT_TIMEOUT_MULT && !SequencedQueue.empty() && NextSequencedSend &&
|
|
|
|
|
(GetState()==ESTABLISHED) && ((retransmittimer+retransmittimeout) < Timer::GetCurrentTime())) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Timeout since last ack received, starting retransmit at the start of our unacked "
|
|
|
|
|
"buffer (seq %d, was %d)." __L, SequencedBase, SequencedBase+NextSequencedSend);
|
|
|
|
|
NextSequencedSend = 0;
|
|
|
|
|
retransmittimer = Timer::GetCurrentTime(); // don't want to endlessly retransmit the first packet
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Find the next sequenced packet to send from the "queue"
|
|
|
|
|
sitr = SequencedQueue.begin();
|
|
|
|
|
if (sitr!=SequencedQueue.end())
|
|
|
|
|
sitr += NextSequencedSend;
|
|
|
|
|
|
|
|
|
|
uint16 count = 0;
|
|
|
|
|
// get to start of packets
|
|
|
|
|
while (sitr != SequencedQueue.end() && (*sitr)->sent_time > 0) {
|
|
|
|
|
sitr++;
|
|
|
|
|
count++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Loop until both are empty or MaxSends is reached
|
|
|
|
|
while(!SeqEmpty || !NonSeqEmpty) {
|
|
|
|
|
@ -731,7 +712,7 @@ void EQStream::Write(int eq_fd)
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Starting combined packet with non-seq packet of len %d" __L, p->size);
|
|
|
|
|
NonSequencedQueue.pop();
|
|
|
|
|
} else if (!p->combine(NonSequencedQueue.front())) {
|
|
|
|
|
// Tryint to combine this packet with the base didn't work (too big maybe)
|
|
|
|
|
// Trying to combine this packet with the base didn't work (too big maybe)
|
|
|
|
|
// So just send the base packet (we'll try this packet again later)
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Combined packet full at len %d, next non-seq packet is len %d" __L, p->size, (NonSequencedQueue.front())->size);
|
|
|
|
|
ReadyToSend.push(p);
|
|
|
|
|
@ -754,15 +735,10 @@ void EQStream::Write(int eq_fd)
|
|
|
|
|
NonSeqEmpty=true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sitr!=SequencedQueue.end()) {
|
|
|
|
|
if(uint16(SequencedBase + SequencedQueue.size()) != NextOutSeq) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Pre-Send Seq NSS=%d Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, NextSequencedSend, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Pre-Send Next Send Sequence is beyond the end of the queue NSS %d > SQ %d" __L, NextSequencedSend, SequencedQueue.size());
|
|
|
|
|
}
|
|
|
|
|
uint16 seq_send = SequencedBase + NextSequencedSend; //just for logging...
|
|
|
|
|
if (sitr!=SequencedQueue.end()) {
|
|
|
|
|
|
|
|
|
|
uint16 seq_send = SequencedBase + count; //just for logging...
|
|
|
|
|
|
|
|
|
|
if(SequencedQueue.empty()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Tried to write a packet with an empty queue (%d is past next out %d)" __L, seq_send, NextOutSeq);
|
|
|
|
|
@ -771,26 +747,32 @@ void EQStream::Write(int eq_fd)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(GetExecutablePlatform() == ExePlatformWorld || GetExecutablePlatform() == ExePlatformZone) {
|
|
|
|
|
if (!RETRANSMIT_ACKED_PACKETS && (*sitr)->acked) {
|
|
|
|
|
if ((*sitr)->acked || (*sitr)->sent_time != 0) {
|
|
|
|
|
++sitr;
|
|
|
|
|
++count;
|
|
|
|
|
if (p) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Final combined packet not full, len %d" __L, p->size);
|
|
|
|
|
ReadyToSend.push(p);
|
|
|
|
|
BytesWritten += p->size;
|
|
|
|
|
p = nullptr;
|
|
|
|
|
}
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Not retransmitting seq packet %d because already marked as acked" __L, seq_send);
|
|
|
|
|
sitr++;
|
|
|
|
|
NextSequencedSend++;
|
|
|
|
|
} else if (!p) {
|
|
|
|
|
// If we don't have a packet to try to combine into, use this one as the base
|
|
|
|
|
// Copy it first as it will still live until it is acked
|
|
|
|
|
p=(*sitr)->Copy();
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Starting combined packet with seq packet %d of len %d" __L, seq_send, p->size);
|
|
|
|
|
(*sitr)->sent_time = Timer::GetCurrentTime();
|
|
|
|
|
++sitr;
|
|
|
|
|
NextSequencedSend++;
|
|
|
|
|
++count;
|
|
|
|
|
} else if (!p->combine(*sitr)) {
|
|
|
|
|
// Trying to combine this packet with the base didn't work (too big maybe)
|
|
|
|
|
// So just send the base packet (we'll try this packet again later)
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Combined packet full at len %d, next seq packet %d is len %d" __L, p->size, seq_send, (*sitr)->size);
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Combined packet full at len %d, next seq packet %d is len %d" __L, p->size, seq_send + 1, (*sitr)->size);
|
|
|
|
|
ReadyToSend.push(p);
|
|
|
|
|
BytesWritten+=p->size;
|
|
|
|
|
p=nullptr;
|
|
|
|
|
|
|
|
|
|
if (BytesWritten > threshold) {
|
|
|
|
|
if ((*sitr)->opcode != OP_Fragment && BytesWritten > threshold) {
|
|
|
|
|
// Sent enough this round, lets stop to be fair
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Exceeded write threshold in seq (%d > %d)" __L, BytesWritten, threshold);
|
|
|
|
|
break;
|
|
|
|
|
@ -798,17 +780,28 @@ void EQStream::Write(int eq_fd)
|
|
|
|
|
} else {
|
|
|
|
|
// Combine worked
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Combined seq packet %d of len %d, yeilding %d combined." __L, seq_send, (*sitr)->size, p->size);
|
|
|
|
|
(*sitr)->sent_time = Timer::GetCurrentTime();
|
|
|
|
|
++sitr;
|
|
|
|
|
NextSequencedSend++;
|
|
|
|
|
++count;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (!p) {
|
|
|
|
|
if ((*sitr)->sent_time != 0) {
|
|
|
|
|
++sitr;
|
|
|
|
|
++count;
|
|
|
|
|
if (p) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Final combined packet not full, len %d" __L, p->size);
|
|
|
|
|
ReadyToSend.push(p);
|
|
|
|
|
BytesWritten += p->size;
|
|
|
|
|
p = nullptr;
|
|
|
|
|
}
|
|
|
|
|
} else if (!p) {
|
|
|
|
|
// If we don't have a packet to try to combine into, use this one as the base
|
|
|
|
|
// Copy it first as it will still live until it is acked
|
|
|
|
|
p=(*sitr)->Copy();
|
|
|
|
|
(*sitr)->sent_time = Timer::GetCurrentTime();
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Starting combined packet with seq packet %d of len %d" __L, seq_send, p->size);
|
|
|
|
|
++sitr;
|
|
|
|
|
NextSequencedSend++;
|
|
|
|
|
++count;
|
|
|
|
|
} else if (!p->combine(*sitr)) {
|
|
|
|
|
// Trying to combine this packet with the base didn't work (too big maybe)
|
|
|
|
|
// So just send the base packet (we'll try this packet again later)
|
|
|
|
|
@ -824,18 +817,16 @@ void EQStream::Write(int eq_fd)
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// Combine worked
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Combined seq packet %d of len %d, yeilding %d combined." __L, seq_send, (*sitr)->size, p->size);
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Combined seq packet %d of len %d, yielding %d combined." __L, seq_send, (*sitr)->size, p->size);
|
|
|
|
|
(*sitr)->sent_time = Timer::GetCurrentTime();
|
|
|
|
|
++sitr;
|
|
|
|
|
NextSequencedSend++;
|
|
|
|
|
++count;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(uint16(SequencedBase + SequencedQueue.size()) != NextOutSeq) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Post send Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Post send Next Send Sequence is beyond the end of the queue NSS %d > SQ %d" __L, NextSequencedSend, SequencedQueue.size());
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// No more sequenced packets
|
|
|
|
|
SeqEmpty=true;
|
|
|
|
|
@ -894,9 +885,11 @@ sockaddr_in address;
|
|
|
|
|
length=p->serialize(buffer);
|
|
|
|
|
if (p->opcode!=OP_SessionRequest && p->opcode!=OP_SessionResponse) {
|
|
|
|
|
if (compressed) {
|
|
|
|
|
BytesWritten -= p->size;
|
|
|
|
|
uint32 newlen=EQProtocolPacket::Compress(buffer,length, _tempBuffer, 2048);
|
|
|
|
|
memcpy(buffer,_tempBuffer,newlen);
|
|
|
|
|
length=newlen;
|
|
|
|
|
BytesWritten += newlen;
|
|
|
|
|
}
|
|
|
|
|
if (encoded) {
|
|
|
|
|
EQProtocolPacket::ChatEncode(buffer,length,Key);
|
|
|
|
|
@ -1158,13 +1151,6 @@ void EQStream::AckPackets(uint16 seq)
|
|
|
|
|
std::deque<EQProtocolPacket *>::iterator itr, tmp;
|
|
|
|
|
|
|
|
|
|
MOutboundQueue.lock();
|
|
|
|
|
//do a bit of sanity checking.
|
|
|
|
|
if(uint16(SequencedBase + SequencedQueue.size()) != NextOutSeq) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Pre-Ack Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Pre-Ack Next Send Sequence is beyond the end of the queue NSS %d > SQ %d" __L, NextSequencedSend, SequencedQueue.size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SeqOrder ord = CompareSequence(SequencedBase, seq);
|
|
|
|
|
if(ord == SeqInOrder) {
|
|
|
|
|
@ -1180,28 +1166,21 @@ if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
//this is a good ack, we get to ack some blocks.
|
|
|
|
|
seq++; //we stop at the block right after their ack, counting on the wrap of both numbers.
|
|
|
|
|
while(SequencedBase != seq) {
|
|
|
|
|
if(SequencedQueue.empty()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "OUT OF PACKETS acked packet with sequence %lu. Next send is %d before this." __L, (unsigned long)SequencedBase, NextSequencedSend);
|
|
|
|
|
SequencedBase = NextOutSeq;
|
|
|
|
|
NextSequencedSend = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Removing acked packet with sequence %lu. Next send is %d before this." __L, (unsigned long)SequencedBase, NextSequencedSend);
|
|
|
|
|
if(SequencedQueue.empty()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "OUT OF PACKETS acked packet with sequence %lu. Next send is %d before this." __L, (unsigned long)SequencedBase, SequencedQueue.size());
|
|
|
|
|
SequencedBase = NextOutSeq;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Removing acked packet with sequence %lu." __L, (unsigned long)SequencedBase);
|
|
|
|
|
//clean out the acked packet
|
|
|
|
|
delete SequencedQueue.front();
|
|
|
|
|
SequencedQueue.pop_front();
|
|
|
|
|
//adjust our "next" pointer
|
|
|
|
|
if(NextSequencedSend > 0)
|
|
|
|
|
NextSequencedSend--;
|
|
|
|
|
//advance the base sequence number to the seq of the block after the one we just got rid of.
|
|
|
|
|
SequencedBase++;
|
|
|
|
|
}
|
|
|
|
|
if(uint16(SequencedBase + SequencedQueue.size()) != NextOutSeq) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Post-Ack on %d Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, seq, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
if(NextSequencedSend > SequencedQueue.size()) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Post-Ack Next Send Sequence is beyond the end of the queue NSS %d > SQ %d" __L, NextSequencedSend, SequencedQueue.size());
|
|
|
|
|
}
|
|
|
|
|
if(uint16(SequencedBase + SequencedQueue.size()) != NextOutSeq) {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Post-Ack on %d Invalid Sequenced queue: BS %d + SQ %d != NOS %d" __L, seq, SequencedBase, SequencedQueue.size(), NextOutSeq);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MOutboundQueue.unlock();
|
|
|
|
|
@ -1379,6 +1358,16 @@ void EQStream::Decay()
|
|
|
|
|
if (BytesWritten<0)
|
|
|
|
|
BytesWritten=0;
|
|
|
|
|
}
|
|
|
|
|
// check for any timed out acks
|
|
|
|
|
if ((GetExecutablePlatform() == ExePlatformWorld || GetExecutablePlatform() == ExePlatformZone) && RETRANSMIT_TIMEOUT_MULT && retransmittimeout) {
|
|
|
|
|
int count = 0;
|
|
|
|
|
for (std::deque<EQProtocolPacket *>::iterator sitr = SequencedQueue.begin(); sitr != SequencedQueue.end(); sitr++, count++) {
|
|
|
|
|
if (!(*sitr)->acked && (*sitr)->sent_time > 0 && ((*sitr)->sent_time + retransmittimeout) < Timer::GetCurrentTime()) {
|
|
|
|
|
(*sitr)->sent_time = 0;
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Timeout exceeded for seq %d. Flagging packet for retransmission" __L, SequencedBase + count);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EQStream::AdjustRates(uint32 average_delta)
|
|
|
|
|
@ -1386,18 +1375,24 @@ void EQStream::AdjustRates(uint32 average_delta)
|
|
|
|
|
if(GetExecutablePlatform() == ExePlatformWorld || GetExecutablePlatform() == ExePlatformZone) {
|
|
|
|
|
if (average_delta && (average_delta <= AVERAGE_DELTA_MAX)) {
|
|
|
|
|
MRate.lock();
|
|
|
|
|
AverageDelta = average_delta;
|
|
|
|
|
RateThreshold=RATEBASE/average_delta;
|
|
|
|
|
DecayRate=DECAYBASE/average_delta;
|
|
|
|
|
if (BytesWritten > RateThreshold)
|
|
|
|
|
BytesWritten = RateThreshold + DecayRate;
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Adjusting data rate to thresh %d, decay %d based on avg delta %d" __L,
|
|
|
|
|
RateThreshold, DecayRate, average_delta);
|
|
|
|
|
MRate.unlock();
|
|
|
|
|
} else {
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Not adjusting data rate because avg delta over max (%d > %d)" __L,
|
|
|
|
|
average_delta, AVERAGE_DELTA_MAX);
|
|
|
|
|
AverageDelta = AVERAGE_DELTA_MAX;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (average_delta) {
|
|
|
|
|
MRate.lock();
|
|
|
|
|
AverageDelta = average_delta;
|
|
|
|
|
BytesWritten = 0;
|
|
|
|
|
RateThreshold=RATEBASE/average_delta;
|
|
|
|
|
DecayRate=DECAYBASE/average_delta;
|
|
|
|
|
Log.Out(Logs::Detail, Logs::Netcode, _L "Adjusting data rate to thresh %d, decay %d based on avg delta %d" __L,
|
|
|
|
|
|