Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/orcaman/chord

a simple cord algorithm simulator in C
https://github.com/orcaman/chord

Last synced: about 1 month ago
JSON representation

a simple cord algorithm simulator in C

Awesome Lists containing this project

README

        

# chord

a simple [cord algorithm](https://en.wikipedia.org/wiki/Chord_(peer-to-peer)) simulator. work in progress.

```bash
usage: chord
```

n = size of network (log2(n) connections for each peer's routing table).

## build

We use SHA1 hash for the GUIDs, hence you should link with openssl libcrypto to build:

```
clang main.c -I/usr/local/opt/openssl/include -lcrypto
```