commit | 79c5baf1b976f42d709c899a64db2f0700aaef8b | [log] [tgz] |
---|---|---|
author | Ashlesh Gawande <agawande@memphis.edu> | Sun Feb 16 12:29:52 2020 -0800 |
committer | Ashlesh Gawande <agawande@memphis.edu> | Thu Mar 05 17:45:24 2020 -0800 |
tree | 64d1ab8e3957423146390b85ae6c056f0d1ae966 | |
parent | e23b53bd1be1609f85f2170be778d7af50f45360 [diff] |
**breaking** IBLT: make encoding endian safe refs: #5076 Change-Id: I0bbe2c321d971128733b87acbdf06bcaaa8b0571
If you are new to the NDN community of software generally, read the Contributor's Guide.
PSync library implements the PSync protocol. It uses Invertible Bloom Lookup Table (IBLT), also known as Invertible Bloom Filter (IBF), to represent the state of a producer in partial sync mode and the state of a node in full sync mode. An IBF is a compact data structure where difference of two IBFs can be computed efficiently. In partial sync, PSync uses a Bloom Filter to represent the subscription of list of the consumer. PSync uses ndn-cxx library as NDN development library.
PSync is an open source project licensed under LGPL 3.0 (see COPYING.md
for more detail). We highly welcome all contributions to the PSync code base, provided that they can be licensed under LGPL 3.0+ or other compatible license.
Please submit any bugs or issues to the PSync issue tracker:
Required:
To build PSync from the source:
./waf configure ./waf sudo ./waf install
To build on memory constrained platform, please use ./waf -j1
instead of ./waf
. The command will disable parallel compilation.
If configured with tests: ./waf configure --with-tests
), the above commands will also generate unit tests in ./build/unit-tests