-
Notifications
You must be signed in to change notification settings - Fork 353
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
Peer closing issue #78
Comments
Hello @sarathkumar654 Thanks a lot for your interest on WebRTC and being so active on this repository. I can see you have posted #72, #74, and #75 with very similar questions. Are those duplicates or already resolved? Can we consider them as duplicates and close them? Have you read my comments there? I have been providing some guidance on them. The codelab is designed to connect only two peers. In order to connect several peers you can follow the comments on #72 or check the examples on WebRTC samples: live demo and code. I have also submitted #77 to have future reference to this very same ideas. In general, we would also need to know how to reproduce the error. Does this happen only when you disconnect peer A (aka: room creator) or also when you disconnect any of the other peers? What are the steps to reproduce? If you have made changes to the code (it seems you did as the codelab only takes two peers) and now you are having new issues, we would need to see the code you are trying to use to help you here. As it is not really part of the codelab, I would advise leveraging #webRTC on StackOverflow where many people could chime in and provide good guidance. // cc: @samdutton |
we were following the below code var fileServer = new(nodeStatic.Server)(); var io = socketIO.listen(app);
io.sockets.on('connection', function(socket) {
}); while disconnect a room all the rooms connection has been disconnected |
@sarathkumar654 In what step-xx did you apply this code? Otherwise, I am unable to test. |
I tried to implement multi connections at a time
same time A can communicate B and C and communicate with D , while I disconnect A from B , C and D also disconnected , how to close a specific peer connection without affecting other peer connections .
The text was updated successfully, but these errors were encountered: