An open API service indexing awesome lists of open source software.

https://github.com/simdsoft/ftp_server

A very simple FTP server based on yasio, as a submodule of yasio/examples/ftp_server
https://github.com/simdsoft/ftp_server

ftp ftp-server yasio

Last synced: about 1 year ago
JSON representation

A very simple FTP server based on yasio, as a submodule of yasio/examples/ftp_server

Awesome Lists containing this project

README

          

# ftp_server

The binary of this project is deployed at

### build and run
#### build
Goto the parent project's root directory, the parent project is: [yasio](https://github.com/yasio/yasio)
```sh
cmake -B build
cmake --build build --config Release --target ftp_server
```
#### run
Continue run ftp server after build finished
```sh
cd build/examples/ftp_server
./ftp_server [optional]
```

### references:

https://tools.ietf.org/html/rfc959

### pitfall:
Some client's ip may block by server firewall strategy, please switch to mobile cellular network and try access the ftp again.