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

JitsiConnectionErrors.js 589B

123456789101112131415161718192021
  1. /**
  2. * The errors for the connection.
  3. */
  4. /**
  5. * Indicates that a connection error occurred when trying to join a conference.
  6. */
  7. export const CONNECTION_ERROR = "connection.connectionError";
  8. /**
  9. * Not specified errors.
  10. */
  11. export const OTHER_ERROR = "connection.otherError";
  12. /**
  13. * Indicates that a password is required in order to join the conference.
  14. */
  15. export const PASSWORD_REQUIRED = "connection.passwordRequired";
  16. /**
  17. * Indicates that the connection was dropped, because of too many 5xx HTTP
  18. * errors on BOSH requests.
  19. */
  20. export const SERVER_ERROR = "connection.serverError";