# ftp **Repository Path**: pine404/ftp ## Basic Information - **Project Name**: ftp - **Description**: siim_ftp github mirror - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-08-19 - **Last Updated**: 2023-09-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Simple ftp server ## How to install: ``` cd to the ftp dir make 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 * 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.