connection_status.js 183 B

12345678910111213
  1. 'use strict';
  2. const Status = {
  3. NOT_CONNECTED: 1,
  4. CONNECTING: 2,
  5. AUTHENTICATING: 3,
  6. INIT_CMD: 4,
  7. CONNECTED: 5,
  8. CLOSING: 6,
  9. CLOSED: 7
  10. };
  11. module.exports.Status = Status;