internal void CountMessageResent(NetMessageLibraryType tp)
        {
            m_messagesResent++;
            if (tp == NetMessageLibraryType.User)
            {
                m_userMessagesResent++;
            }

            NetConnectionStatistics window = GetCurrentWindow(NetTime.Now);

            if (window != null)
            {
                window.CountMessageResent(tp);
            }
        }