truth
truth
我看在KCP初始化的时候, KCP慢启动阈值初始设置为2个segment,是不是很快就会进入拥塞避免阶段,对于高带宽、低延迟的情形,是不是不能快速的打开窗口?需要经过很多个RTT才可能到达网络容量?
请教一个问题:在ikcp_input中,最后进行了拥塞窗口的更新: if (_itimediff(kcp->snd_una, prev_una) > 0) { if (kcp->cwnd < kcp->rmt_wnd) { IUINT32 mss = kcp->mss; if (kcp->cwnd < kcp->ssthresh) { kcp->cwnd++; kcp->incr += mss; /* 可以发送的最大数据量 */ } else...
In function OnSentPacket(SentPacket msg) of "pcc_network_controller.cc" file. There is codes if (last_received_packets_.size() > 0) sending_time = last_received_packets_.back().receive_time - last_received_packets_.front().receive_time; DataRate receiving_rate = bandwidth_estimate_; if (sending_time > TimeDelta::Zero()) receiving_rate = received_size...
请问一下,这个p2p demo是不是没有走webrtc的传输流程?是走的mongoose的http传输?谢谢