internal void CountPacketSent(int numBytes)
        {
            m_packetsSent++;
            m_bytesSent += numBytes;

            NetConnectionStatistics window = GetCurrentWindow(NetTime.Now);

            if (window != null)
            {
                window.CountPacketSent(numBytes);
            }
        }