You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-16 15:16:33 +09:00
Major refactoring of sending messages to multiple recipients
This commit is contained in:
@@ -72,6 +72,20 @@ namespace Lidgren.Network
|
||||
/// </summary>
|
||||
public int ReceivedBytes { get { return m_receivedBytes; } }
|
||||
|
||||
public double LastSendRespondedTo { get { return m_connection.m_lastSendRespondedTo; } }
|
||||
|
||||
public int MostSends
|
||||
{
|
||||
get
|
||||
{
|
||||
int most = 0;
|
||||
foreach (var a in m_connection.m_unackedSends)
|
||||
if (a.NumSends > most)
|
||||
most = a.NumSends;
|
||||
return most;
|
||||
}
|
||||
}
|
||||
|
||||
[Conditional("DEBUG")]
|
||||
internal void PacketSent(int numBytes, int numMessages)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user