aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-10-16 00:38:01 +0200
committerdec05eba <dec05eba@protonmail.com>2020-08-18 23:25:46 +0200
commit0e627b69d4d0a8d01a21e4dc9bd7be370c0a1245 (patch)
treeb4385cb95cf6b4315000c149ac115c15fec10bba /README.md
parent060b6db1aadccd1ad3495c52a15b4a789e4bc8da (diff)
Replace opendht with sibs pubsub
This should fix issues with memory usage/leaks and make it easier to get peers subscribed to the same key. It will also be easier to modify and also works easier cross platform because of no additional dependencies.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 528e22d..fc334e8 100644
--- a/README.md
+++ b/README.md
@@ -5,11 +5,11 @@ Data is signed using ed25519, encrypted using xchacha20-poly1305 ietf and hashed
See src/Encryption.cpp, src/Signature.cpp and src/Hash.cpp.
Also check Scheme.md for packet construction.
# Limits
-Only 65kb of data can be used for each `add`. You can add more data by using `add` several times.
+Only 800kb of data can be used for each `add`. You can add more data by using `add` several times.
# TODO
## Data limit
-Allow more than 65kb of data to be added at once
+Allow more than 800kb of data to be added at once
## Node banning
Ban nodes that spam put or get (malicious nodes). If data is routed, then the router node should first ban the malicious node so the router node is not banned if it's not malicious.
But how can we know if data was routed? does opendht expose this to other nodes in some way?