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

constants.js 396B

123456789101112
  1. /**
  2. * The know jingle actions that can be sent and should be acted upon by
  3. * {@code ProxyConnectionService} and {@code ProxyConnectionPC}.
  4. */
  5. export const ACTIONS = {
  6. ACCEPT: 'session-accept',
  7. CONNECTION_ERROR: 'connection-error-encountered',
  8. INITIATE: 'session-initiate',
  9. TERMINATE: 'session-terminate',
  10. TRANSPORT_INFO: 'transport-info',
  11. UNAVAILABLE: 'unavailable'
  12. };