wechat wss demo

packet.js 184B

12345678910111213
  1. function Packet () {
  2. this.cmd = null
  3. this.retain = false
  4. this.qos = 0
  5. this.dup = false
  6. this.length = -1
  7. this.topic = null
  8. this.payload = null
  9. }
  10. module.exports = Packet