📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-28 09:21:00
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
testing.orkobd
/
14
/
lib
/
node_modules
/
mysql
/
lib
/
protocol
/
packets
📍 /home/orkouolp/nodevenv/node_js/testing.orkobd/14/lib/node_modules/mysql/lib/protocol/packets
🔄 Refresh
✏️
Editing: StatisticsPacket.js
Writable
module.exports = StatisticsPacket; function StatisticsPacket() { this.message = undefined; } StatisticsPacket.prototype.parse = function(parser) { this.message = parser.parsePacketTerminatedString(); var items = this.message.split(/\s\s/); for (var i = 0; i < items.length; i++) { var m = items[i].match(/^(.+)\:\s+(.+)$/); if (m !== null) { this[m[1].toLowerCase().replace(/\s/g, '_')] = Number(m[2]); } } }; StatisticsPacket.prototype.write = function(writer) { writer.writeString(this.message); };
💾 Save Changes
❌ Cancel