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

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

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.

![sfs/sfc demo](https://j.gifs.com/nrOzkl.gif)

## 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
```