您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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;