How to use the PeerConnection function from bindings

Find comprehensive JavaScript bindings.PeerConnection code examples handpicked from public code repositorys.

5
6
7
8
9
10
11
12
13
var RTCDataChannel = require('./datachannel');


function PeerConnection(configuration, constraints) {
  var that = this;
  this._pc = new _webrtc.PeerConnection(configuration, constraints);

  this._localType = null;
  this._remoteType = null;
fork icon441
star icon1
watch icon0

+ 15 other calls in file

Other functions in bindings

Sorted by popularity

function icon

bindings.createKey is the most popular function in bindings (8616 examples)