You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JingleSession.js 383B

1234567891011
  1. /*
  2. * JingleSession provides an API to manage a single Jingle session. We will
  3. * have different implementations depending on the underlying interface used
  4. * (i.e. WebRTC and ORTC) and here we hold the code common to all of them.
  5. */
  6. function JingleSession() {
  7. // dripping is sending trickle candidates not one-by-one
  8. this.usedrip = true;
  9. }
  10. module.exports = JingleSession;