Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Signaling.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Remember, there are some built-in implementations:
2. [DataChanel.js and Reliable Signaling](https://github.com/muaz-khan/Reliable-Signaler/tree/master/datachannel-client)
1. [Socket.io over Node.js](https://github.com/muaz-khan/WebRTC-Experiment/tree/master/socketio-over-nodejs)
2. [WebSocket over Node.js](https://github.com/muaz-khan/WebRTC-Experiment/tree/master/websocket-over-nodejs)
3. [WebSync for Signaling](https://github.com/muaz-khan/WebSync-Signaling) useful only for .NET developers
4. [XHR/XMLHttpRequest Signaling](https://github.com/muaz-khan/XHR-Signaling) useful for both .NET and PHP developers!
3. [WebSync for Signaling](https://github.com/muaz-khan/WebSync-Signaling) useful only for .NET developers
4. [XHR/XMLHttpRequest Signaling](https://github.com/muaz-khan/XHR-Signaling) useful for both .NET and PHP developers!

If you wanna understand basics of WebRTC signaling; then scroll to bottom and check [this section](https://github.com/muaz-khan/WebRTC-Experiment/blob/master/Signaling.md#a-few-other-resources).

Expand Down Expand Up @@ -497,7 +497,7 @@ var socket = io.connect('/');

socket.on('presence', function (isChannelPresent) {
if (!isChannelPresent)
connection.opne(connection.sessionid);
connection.open(connection.sessionid);
else
connection.join(connection.sessionid);
});
Expand Down