internal void CountPacketReceived(int numBytes, double now)
        {
            m_packetsReceived++;
            m_bytesReceived += numBytes;

            NetConnectionStatistics window = GetCurrentWindow(now);

            if (window != null)
            {
                window.CountPacketReceived(numBytes, now);
            }
        }