From 29b7e2fe06741f639e7b9e08151d55365e52b499 Mon Sep 17 00:00:00 2001 From: lidgren Date: Tue, 14 Sep 2010 09:13:47 +0000 Subject: [PATCH] Added ResentMessages to NetConnectionStatistics --- Lidgren.Network/NetConnectionStatistics.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Lidgren.Network/NetConnectionStatistics.cs b/Lidgren.Network/NetConnectionStatistics.cs index a5159ed..b3b2d00 100644 --- a/Lidgren.Network/NetConnectionStatistics.cs +++ b/Lidgren.Network/NetConnectionStatistics.cs @@ -72,6 +72,11 @@ namespace Lidgren.Network /// public int ReceivedBytes { get { return m_receivedBytes; } } + /// + /// Gets the number of resent reliable messages for this connection + /// + public int ResentMessages { get { return m_resentMessages; } } + public double LastSendRespondedTo { get { return m_connection.m_lastSendRespondedTo; } } public int MostSends