Lines Matching refs:info
340 const OSSL_CC_ACK_INFO *info) in newreno_on_data_acked() argument
348 nr->bytes_in_flight -= info->tx_size; in newreno_on_data_acked()
377 if (newreno_in_cong_recovery(nr, info->tx_time)) { in newreno_on_data_acked()
381 nr->cong_wnd += info->tx_size; in newreno_on_data_acked()
385 nr->bytes_acked += info->tx_size; in newreno_on_data_acked()
404 const OSSL_CC_LOSS_INFO *info) in newreno_on_data_lost() argument
408 if (info->tx_size > nr->bytes_in_flight) in newreno_on_data_lost()
411 nr->bytes_in_flight -= info->tx_size; in newreno_on_data_lost()
415 if (ossl_time_compare(info->tx_time, nr->tx_time_of_last_loss) <= 0) in newreno_on_data_lost()
433 = ossl_time_max(nr->tx_time_of_last_loss, info->tx_time); in newreno_on_data_lost()
459 const OSSL_CC_ECN_INFO *info) in newreno_on_ecn() argument
465 nr->tx_time_of_last_loss = info->largest_acked_time; in newreno_on_ecn()