Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.