-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
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
Issue with membrane rtsp after v0.7.2 #863
Comments
Hi, I see the issue. In membraneframework/membrane_rtsp#44 the behavior changes (after transferring control the session no longer tries to receive from that socket). Would it be okay if it's fixed there? |
That's great, I'll wait for |
I just released v0.10.0, give it a try :) Also gBillal/membrane_rtsp_plugin#12 is now ready for review |
unfortunately this is still not fixing my issue. The fact that the rtsp session update the active mode of the socket creates a problem. Since I have another process that always using |
are you calling |
Made a mistake, forgot to set the socket to non-active mode. |
Since v0.7.2 where the tcp socket is set to active mode. This causes issues when someone want full control of the underlying tcp socket.
In my case I get the socket and set
active
to false, so once I try to:gen_tcp.recv
and the socket try to send a message in another process, I get the error{:error, :einval}
(because the socket is set to active mode)The text was updated successfully, but these errors were encountered: