PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
mysql
/
lib
/
protocol
/
sequences
var Sequence = require('./Sequence'); var Util = require('util'); var Packets = require('../packets'); module.exports = Ping; Util.inherits(Ping, Sequence); function Ping(options, callback) { if (!callback && typeof options === 'function') { callback = options; options = {}; } Sequence.call(this, options, callback); } Ping.prototype.start = function() { this.emit('packet', new Packets.ComPingPacket()); };
[-] Quit.js
[edit]
[+]
..
[-] Sequence.js
[edit]
[-] ChangeUser.js
[edit]
[-] Ping.js
[edit]
[-] index.js
[edit]
[-] Statistics.js
[edit]
[-] Handshake.js
[edit]
[-] Query.js
[edit]