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
14
node_modules/mysql/lib/protocol/packets/OldPasswordPacket.js
generated
vendored
Normal file
14
node_modules/mysql/lib/protocol/packets/OldPasswordPacket.js
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
module.exports = OldPasswordPacket;
|
||||
function OldPasswordPacket(options) {
|
||||
options = options || {};
|
||||
|
||||
this.scrambleBuff = options.scrambleBuff;
|
||||
}
|
||||
|
||||
OldPasswordPacket.prototype.parse = function(parser) {
|
||||
this.scrambleBuff = parser.parsePacketTerminatedBuffer();
|
||||
};
|
||||
|
||||
OldPasswordPacket.prototype.write = function(writer) {
|
||||
writer.writeBuffer(this.scrambleBuff);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue