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