From 2fb8e1c7ee4e03029d9b18762a08ab1339ff02cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Sun, 12 Apr 2020 15:56:23 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f2f16579..34fb21b8 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ int main() // Join the network through any running node, // here using a known bootstrap node. - node.bootstrap("bootstrap.ring.cx", "4222"); + node.bootstrap("bootstrap.jami.net", "4222"); // put some data on the dht std::vector<uint8_t> some_data(5, 10); @@ -82,7 +82,7 @@ node.run() # Join the network through any running node, # here using a known bootstrap node. -node.bootstrap("bootstrap.ring.cx", "4222") +node.bootstrap("bootstrap.jami.net", "4222") # blocking call (provide callback arguments to make the call non-blocking) node.put(dht.InfoHash.get("unique_key"), dht.Value(b'some binary data')) -- GitLab