Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyberfined/borscht
Simple FTP server written in go
https://github.com/cyberfined/borscht
ftp ftp-server go golang
Last synced: about 2 months ago
JSON representation
Simple FTP server written in go
- Host: GitHub
- URL: https://github.com/cyberfined/borscht
- Owner: cyberfined
- License: wtfpl
- Created: 2020-05-22T17:42:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-05T22:07:41.000Z (about 3 years ago)
- Last Synced: 2024-06-20T20:42:30.585Z (7 months ago)
- Topics: ftp, ftp-server, go, golang
- Language: Go
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# borscht
Simple FTP server written in go.# Usage
```bash
./borscht [FILE]...
```Default port is 5000. All files and directories will be placed in root of FTP server.
# Implemented commands
* USER.
* PASS.
* SYST.
* TYPE.
* FEAT.
* PWD.
* CWD.
* PASV.
* SIZE.
* LIST.
* RETR.
* QUIT.# TODO
* Implement active mode aka PORT command.
* Implement STOR command.