| 96 | } |
| 97 | |
| 98 | inline void UpdateInterval( float flElapsed ) |
| 99 | { |
| 100 | m_flSendRate = m_nSendInterval / flElapsed; |
| 101 | m_flRecvRate = m_nRecvInterval / flElapsed; |
| 102 | |
| 103 | m_nSendInterval = 0; |
| 104 | m_nRecvInterval = 0; |
| 105 | } |
| 106 | |
| 107 | inline void UpdateStats() |
| 108 | { |
no outgoing calls
no test coverage detected