UNPKG

ftp-srv-u

Version:
15 lines (14 loc) 383 B
module.exports = { directive: 'ABOR', handler: function () { return this.connector.waitForConnection() .then((socket) => { return this.reply(426, {socket}) .then(() => this.reply(226)); }) .catch(() => this.reply(225)) .finally(() => this.connector.end()); }, syntax: '{{cmd}}', description: 'Abort an active file transfer' };