UNPKG
@dominiek/ftp-srv
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Modern, extensible FTP Server
github.com/dominiek/ftp-srv
dominiek/ftp-srv
@dominiek/ftp-srv
/
src
/
commands
/
registration
/
quit.js
12 lines
(11 loc)
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.
exports
= {
directive
:
'QUIT'
,
handler
:
function
(
) {
return
this
.
close
(
221
,
'Client called QUIT'
); },
syntax
:
'{{cmd}}'
,
description
:
'Disconnect'
,
flags
: {
no_auth
:
true
} };