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.

JingleSessionState.js 513B

12345678910111213141516171819202122
  1. /**
  2. * The pending Jingle session state which means the session as defined in
  3. * XEP-0166(before 'session-invite/session-accept' took place).
  4. *
  5. * @type {string}
  6. */
  7. export const PENDING = 'pending';
  8. /**
  9. * The active Jingle session state as defined in XEP-0166
  10. * (after 'session-invite'/'session-accept').
  11. *
  12. * @type {string}
  13. */
  14. export const ACTIVE = 'active';
  15. /**
  16. * The ended Jingle session state as defined in XEP-0166
  17. * (after 'session-terminate').
  18. * @type {string}
  19. */
  20. export const ENDED = 'ended';