You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-17 23:56:30 +09:00
throttling bug fixed
This commit is contained in:
@@ -204,8 +204,14 @@ namespace Lidgren.Network
|
|||||||
double frameLength = now - m_lastSentUnsentMessages;
|
double frameLength = now - m_lastSentUnsentMessages;
|
||||||
if (m_throttleDebt > 0)
|
if (m_throttleDebt > 0)
|
||||||
m_throttleDebt -= (float)(frameLength * throttle);
|
m_throttleDebt -= (float)(frameLength * throttle);
|
||||||
m_lastSentUnsentMessages = now;
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// 0 = unlimited (but still respect throttlethreshold per iteration)
|
||||||
|
m_throttleDebt = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_lastSentUnsentMessages = now;
|
||||||
|
|
||||||
int mtu = m_peerConfiguration.m_maximumTransmissionUnit;
|
int mtu = m_peerConfiguration.m_maximumTransmissionUnit;
|
||||||
bool useCoalescing = m_peerConfiguration.m_useMessageCoalescing;
|
bool useCoalescing = m_peerConfiguration.m_useMessageCoalescing;
|
||||||
|
|||||||
Reference in New Issue
Block a user