Skip to content

Commit

Permalink
Build files
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframHempel committed Aug 20, 2015
1 parent ecfab0e commit 30489ac
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion dist/deepstream.js
Original file line number Diff line number Diff line change
Expand Up @@ -9878,7 +9878,11 @@ var WebRtcConnection = function( connection, localId, remoteId ) {
this._connection = connection;
this._remoteId = remoteId;
this._localId = localId;
this._peerConnection = new RTCPeerConnection( null );

this._peerConnection = new RTCPeerConnection({'iceServers': [
{'url': 'stun:stun.services.mozilla.com'},
{'url': 'stun:stun.l.google.com:19302'}
]} );
this._peerConnection.onaddstream = this._onStream.bind( this );
this._peerConnection.onicecandidate = this._onIceCandidate.bind( this );
this._peerConnection.oniceconnectionstatechange = this._onIceConnectionStateChange.bind( this );
Expand Down

0 comments on commit 30489ac

Please sign in to comment.