PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
mysql
/
lib
/
protocol
module.exports = BufferList; function BufferList() { this.bufs = []; this.size = 0; } BufferList.prototype.shift = function shift() { var buf = this.bufs.shift(); if (buf) { this.size -= buf.length; } return buf; }; BufferList.prototype.push = function push(buf) { if (!buf || !buf.length) { return; } this.bufs.push(buf); this.size += buf.length; };
[-] Auth.js
[edit]
[+]
constants
[-] SqlString.js
[edit]
[+]
sequences
[-] Timer.js
[edit]
[-] Protocol.js
[edit]
[+]
..
[-] BufferList.js
[edit]
[-] PacketWriter.js
[edit]
[-] ResultSet.js
[edit]
[-] Parser.js
[edit]
[-] PacketHeader.js
[edit]
[+]
packets