| 40 | namespace srt { |
| 41 | |
| 42 | SrtCongestionControlBase::SrtCongestionControlBase(CUDT* parent) |
| 43 | { |
| 44 | m_parent = parent; |
| 45 | m_dMaxCWndSize = m_parent->flowWindowSize(); |
| 46 | // RcvRate (deliveryRate()), RTT and Bandwidth can be read directly from CUDT when needed. |
| 47 | m_dCWndSize = 1000; |
| 48 | m_dPktSndPeriod = 1; |
| 49 | } |
| 50 | |
| 51 | void SrtCongestion::Check() |
| 52 | { |
nothing calls this directly
no test coverage detected