forked from Siim/ftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
30 lines (20 loc) · 743 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
SIMPLE FTP server
How to install:
---------------
1) cd to the ftp dir
2) make
3) execute with ./ftp
Commands that are currently implemented:
----------------------------------------
USER PASS - anonymous ftp only at the moment
PASV LIST CWD PWD MKD RMD RETR STOR DELE SIZE ABOR QUIT TYPE NOOP
TODO list is long however the basic functionality is there:
- user log in
- get file
- put file
- mkdir, rm, rmdir
Server currently works with linux only because of splice() and sendfile() functions.
It should be easy enough to implement RETR and STOR for other systems too, so it is
in my todo list.
This server currently doesn't support ASCII mode but this sould not be a
problem with any modern system or ftp client.