// Token: 0x06001FBD RID: 8125 RVA: 0x00089D28 File Offset: 0x00087F28
        private static void Update()
        {
            float deltaTime = Time.deltaTime;

            RttManager.ConnectionRttInfo[] array = RttManager.entries;
            for (int i = 0; i < array.Length; i++)
            {
                ref RttManager.ConnectionRttInfo ptr = ref array[i];
                RttManager.UpdateFilteredRtt(deltaTime, ptr.newestRttInSeconds, ref ptr.frameSmoothedRtt, ref ptr.frameVelocity);
            }
 // Token: 0x06001FB8 RID: 8120 RVA: 0x00089C00 File Offset: 0x00087E00
 private static void OnConnectionDiscovered(NetworkConnection connection)
 {
     RttManager.ConnectionRttInfo connectionRttInfo = new RttManager.ConnectionRttInfo(connection);
     HGArrayUtilities.ArrayAppend <RttManager.ConnectionRttInfo>(ref RttManager.entries, ref connectionRttInfo);
 }