We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SetReadDeadline
ReadStreamSRTP
ReadStreamSRTCP
SetWriteDeadline
WriteStreamSRTP
WriteStreamSRTCP
To make the packet I/O of pion/webrtc cancelable without closing peer-connection, including RTP and RTCP packets.
pion/webrtc
I've spent some time to trace this package, and below is an implementation plan. Please kindly correct me if it's wrong.
ReadStreamSRTP.buffer
ReadStreamSRTCP.buffer
session.nextConn
What I didn't investigate is the way to test the implementation, feel free to give me some advise/reference if any.
The text was updated successfully, but these errors were encountered:
@Sean-Der would love to get your feedback and take over the implementation part.
Sorry, something went wrong.
@mission-liao I am 100% in support of this! This is an instant merge from me :)
Test wise I think it is ok to set a Timelimit on the test 5 seconds and set a small ReadDeadline. If the test times out it will cause a fail.
5 seconds
Cool, would integrate this part to pion/webrtc package later.
Successfully merging a pull request may close this issue.
Summary
SetReadDeadline
fromReadStreamSRTP
andReadStreamSRTCP
.SetWriteDeadline
fromWriteStreamSRTP
andWriteStreamSRTCP
Motivation
To make the packet I/O of
pion/webrtc
cancelable without closing peer-connection, including RTP and RTCP packets.Additional context
I've spent some time to trace this package, and below is an implementation plan. Please kindly correct me if it's wrong.
SetReadDeadline
forReadStreamSRTP
viaReadStreamSRTP.buffer
.SetReadDeadline
forReadStreamSRTCP
viaReadStreamSRTCP.buffer
.SetWriteDeadline
forWriteStreamSRTP
viasession.nextConn
.SetWriteDeadline
forWriteStreamSRTCP
viasession.nextConn
.What I didn't investigate is the way to test the implementation, feel free to give me some advise/reference if any.
The text was updated successfully, but these errors were encountered: