Skip to content

Commit eb7ce7f

Browse files
committed
Threads-RECV: Reset the cache buffer when copy
1 parent 1235b33 commit eb7ce7f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

trunk/src/app/srs_app_listener.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,12 @@ SrsUdpMuxSocket* SrsUdpMuxSocket::copy()
550550
cp->fast_id_ = fast_id_;
551551
cp->address_changed_ = address_changed_;
552552

553+
if (nread) {
554+
// Reset the fast cache buffer size.
555+
cp->cache_buffer_->set_size(nread);
556+
cp->cache_buffer_->skip(-1 * cache_buffer_->pos());
557+
}
558+
553559
cp->handler_ = handler_;
554560

555561
return cp;

0 commit comments

Comments
 (0)