UNPKG

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) 379 B
module.exports = UseOldPasswordPacket; function UseOldPasswordPacket(options) { options = options || {}; this.firstByte = options.firstByte || 0xfe; } UseOldPasswordPacket.prototype.parse = function(parser) { this.firstByte = parser.parseUnsignedNumber(1); }; UseOldPasswordPacket.prototype.write = function(writer) { writer.writeUnsignedNumber(1, this.firstByte); };