Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

JitsiConnectionErrors.js 1.3KB

123456789101112131415161718192021222324252627282930313233
  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. * Indicates that a connection error occurred when trying to join a conference.
  18. */
  19. export const CONNECTION_ERROR = "connection.connectionError";
  20. /**
  21. * Not specified errors.
  22. */
  23. export const OTHER_ERROR = "connection.otherError";
  24. /**
  25. * Indicates that a password is required in order to join the conference.
  26. */
  27. export const PASSWORD_REQUIRED = "connection.passwordRequired";
  28. /**
  29. * Indicates that the connection was dropped, because of too many 5xx HTTP
  30. * errors on BOSH requests.
  31. */
  32. export const SERVER_ERROR = "connection.serverError";