UNPKG

@dominiek/ftp-srv

Version:

Modern, extensible FTP Server

15 lines (14 loc) 369 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' };