Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/orcaman/chord
- Owner: orcaman
- Created: 2015-06-22T19:51:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-30T06:24:04.000Z (over 9 years ago)
- Last Synced: 2024-10-20T17:39:58.471Z (3 months ago)
- Language: C
- Homepage:
- Size: 113 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```