Removed juusto rps (because I have one)
This commit is contained in:
parent
6379ecdaf5
commit
102963c5b7
933 changed files with 242781 additions and 356 deletions
12
node_modules/mysql/lib/protocol/packets/ComQuitPacket.js
generated
vendored
Normal file
12
node_modules/mysql/lib/protocol/packets/ComQuitPacket.js
generated
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue