I'm looking at the webrtc.html
and peerconnection_server
demo, and it is working fine between two Chrome browsers.
My question is, what exactly is the first param of webkitPeerConnection ?
pc = new webkitPeerConnection("STUN stun.l.google.com:19302", onSignalingMessage);
Is it a third party STUN server given by Google for demo purpose ?
If, in my JavaScript code, I replace "stun.l.google.com:19302"
by "toto"
, I'm still able to make video calls.
But as I'm on the same subnet, this can be explainable...