1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00

Use the outgoing split sequence number for every outgoing packet (#4864)

(instead of the last incoming sequence number...)

Fixes #4848
This commit is contained in:
Rogier-5
2016-12-29 13:44:47 +01:00
committed by Ner'zhul
parent e509ead680
commit abd68d3466

View File

@@ -1237,7 +1237,7 @@ void UDPPeer::RunCommandQueues(
u16 UDPPeer::getNextSplitSequenceNumber(u8 channel) u16 UDPPeer::getNextSplitSequenceNumber(u8 channel)
{ {
assert(channel < CHANNEL_COUNT); // Pre-condition assert(channel < CHANNEL_COUNT); // Pre-condition
return channels[channel].readNextIncomingSeqNum(); return channels[channel].readNextSplitSeqNum();
} }
void UDPPeer::setNextSplitSequenceNumber(u8 channel, u16 seqnum) void UDPPeer::setNextSplitSequenceNumber(u8 channel, u16 seqnum)