mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-07-01 23:57:37 +08:00
rtp级联网络慢时默认不限制源端接收网速 (#4359)
This commit is contained in:
@@ -451,7 +451,7 @@ void RtpSender::onFlushRtpList(shared_ptr<List<Buffer::Ptr>> rtp_list) {
|
||||
}
|
||||
default: CHECK(0);
|
||||
}
|
||||
if (_socket_rtp->sockType() == toolkit::SockNum::Sock_TCP && _socket_rtp->isSocketBusy() && _origin_socket) {
|
||||
if (_args.enable_origin_recv_limit && _socket_rtp->sockType() == toolkit::SockNum::Sock_TCP && _socket_rtp->isSocketBusy() && _origin_socket) {
|
||||
_origin_socket->enableRecv(false);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user