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

JitsiConnectionErrors.js 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * The errors for the connection.
  3. */
  4. /**
  5. * Indicates that the connection was dropped with an error which was most likely
  6. * caused by some networking issues. The dropped term in this context means that
  7. * the connection was closed unexpectedly (not on user's request).
  8. *
  9. * One example is 'item-not-found' error thrown by Prosody when the BOSH session
  10. * times out after 60 seconds of inactivity. On the other hand 'item-not-found'
  11. * could also happen when BOSH request is sent to the server with the session-id
  12. * that is not know to the server. But this should not happen in lib-jitsi-meet
  13. * case as long as the service is configured correctly (there is no bug).
  14. */
  15. export const CONNECTION_DROPPED_ERROR = 'connection.droppedError';
  16. /**
  17. * Not specified errors.
  18. */
  19. export const OTHER_ERROR = 'connection.otherError';
  20. /**
  21. * Indicates that a password is required in order to join the conference.
  22. */
  23. export const PASSWORD_REQUIRED = 'connection.passwordRequired';
  24. /**
  25. * Indicates that the connection was dropped, because of too many 5xx HTTP
  26. * errors on BOSH requests.
  27. */
  28. export const SERVER_ERROR = 'connection.serverError';