Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xion/reefs
Rather Eerie Example of an FTP Server
https://github.com/xion/reefs
c ftp ftp-server unix
Last synced: about 12 hours ago
JSON representation
Rather Eerie Example of an FTP Server
- Host: GitHub
- URL: https://github.com/xion/reefs
- Owner: Xion
- Created: 2011-11-17T21:31:18.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2011-11-18T19:42:00.000Z (almost 13 years ago)
- Last Synced: 2023-03-12T07:12:39.857Z (over 1 year ago)
- Topics: c, ftp, ftp-server, unix
- Language: C
- Homepage:
- Size: 109 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# REEFS - Rather Eerie Example of FTP Server
A simple implementation of good ol' FTP protocol on the server side.
Designed to as much POSIX-complaint and cross-platform as possible.
## Features
* Login as anonymous or with predefined credentials
* Walking through directories
* Uploading & downloading files (PASV mode only)## Usage
Clone, compile and run:
$ git clone git://github.com/Xion/reefs.git && cd reefs
$ make
$ ./bin/reefsServer will read its configuration from _config_ and list of users from _users_.
Refer to those files for configuration options.