mysql
Version:
A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.
15 lines (11 loc) • 367 B
JavaScript
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);
};