78f6844a9c4b8e8b1fce3d6108e730ef51abe58b3b7e1d1e3fe0488b45ac1d088b38601f21c6dea14f65e41979822ae59516262f89024a7b75c501b5b354e7 214 B

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