Initial commit
This commit is contained in:
19
node_modules/mysql/lib/protocol/sequences/Ping.js
generated
vendored
Normal file
19
node_modules/mysql/lib/protocol/sequences/Ping.js
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
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());
|
||||
};
|
Reference in New Issue
Block a user