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
- Host: GitHub
- URL: https://github.com/simdsoft/ftp_server
- Owner: simdsoft
- License: mit
- Created: 2019-11-09T07:24:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-25T17:22:27.000Z (over 2 years ago)
- Last Synced: 2025-04-03T17:39:07.998Z (about 1 year ago)
- Topics: ftp, ftp-server, yasio
- Language: C++
- Homepage: ftp://ftp.yasio.org
- Size: 104 KB
- Stars: 7
- Watchers: 1
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.