https://github.com/majestrate/libomnom
Library for gossiping entities over zmq
https://github.com/majestrate/libomnom
bencode gossip p2p zmq
Last synced: about 1 year ago
JSON representation
Library for gossiping entities over zmq
- Host: GitHub
- URL: https://github.com/majestrate/libomnom
- Owner: majestrate
- Created: 2021-01-04T14:55:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-12T10:36:50.000Z (about 5 years ago)
- Last Synced: 2025-01-29T21:54:58.412Z (over 1 year ago)
- Topics: bencode, gossip, p2p, zmq
- Language: C++
- Homepage:
- Size: 99.6 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# libomnom
**O**pen **M**eta **N**etworking **O**verlay **M**esh
p2p entity gossip layer atop zmq
## build
depends:
* cmake
* pkg-config
* c++17 compiler
* oxenmq >= 1.2
clone the source (this is a recursive repo):
$ git clone --recursive https://github.com/majestrate/libomnom
$ cd libomnom
compile as a library:
$ mkdir -p build && cd build
$ cmake .. && make
## tests
if you are building integration tests you also need:
* python 3.x
* pybind11
* pytest
compile and run integration tests:
$ mkdir -p build && cd build
$ cmake .. -DWITH_PYBIND=ON -DWITH_TESTS=ON
$ make check