You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
301 B
13 lines
301 B
module.exports = ComQuitPacket;
|
|
function ComQuitPacket() {
|
|
this.command = 0x01;
|
|
}
|
|
|
|
ComQuitPacket.prototype.parse = function parse(parser) {
|
|
this.command = parser.parseUnsignedNumber(1);
|
|
};
|
|
|
|
ComQuitPacket.prototype.write = function write(writer) {
|
|
writer.writeUnsignedNumber(1, this.command);
|
|
};
|