https://github.com/deviantfero/sfserver
:file_folder: a simple file server to explore custom signaling protocols and threads, written in C
https://github.com/deviantfero/sfserver
Last synced: over 1 year ago
JSON representation
:file_folder: a simple file server to explore custom signaling protocols and threads, written in C
- Host: GitHub
- URL: https://github.com/deviantfero/sfserver
- Owner: deviantfero
- License: mit
- Created: 2017-10-07T00:44:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-13T19:07:22.000Z (about 8 years ago)
- Last Synced: 2025-01-30T15:44:47.018Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 43 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sfserver
## Simple File Server
A local file server written in C for learning Inter Process Communications.
use with [sfc](https://github.com/deviantfero/sfclient) to play around.

## Coding Style Suggestions
http://doc.cat-v.org/bell_labs/pikestyle
## Usage
```sh
sfs [-D directory_name] [-s]
D: specify directory to serve (default is current directory).
s: run in silent mode.
```
### Compiling and running
```sh
# to compile
$ make
# to run after compiling
$ bin/sfs
```