UNPKG
ftp-srv-u
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
0.0.0
Modern, extensible FTP Server
github.com/AndyLee1024/ftp-srv
AndyLee1024/ftp-srv
ftp-srv-u
/
src
/
commands
/
registration
/
allo.js
12 lines
(11 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.
exports
= {
directive
:
'ALLO'
,
handler
:
function
(
) {
return
this
.
reply
(
202
); },
syntax
:
'{{cmd}}'
,
description
:
'Allocate sufficient disk space to receive a file'
,
flags
: {
obsolete
:
true
} };