Here I'm trying to run some of samples available in the WebRTC codes... I run the peerconnection_server.exe on my machine (laptop, running Windows 8.1) it successfully runs. I also run 2 clients via the peerconnection_client.exe. On the peerconnection_server I see the following:
Server listening on port 8888 New connection...
New member added (total=1): lkarapetyan@SYS0700
Disconnecting socket
Total connected: 1
New connection...
New connection...
New member added (total=2): lkarapetyan@SYS0700
Disconnecting socket
Total connected: 2
Disconnecting socket
Total connected: 2
New connection...
New connection...
Assuming this means that both clients were successfully connected. However, on the client side the list of connected peers remains empty (also tried to run another client on another machine and connect to the server, the result is the same).
Why the list of connected peers is not shown in the peerconnection_client? What am I doing wrong?