From 0660e5f77f62c89e50690545822379f0df0c45e4 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Wed, 13 Mar 2019 16:10:11 -0500 Subject: [PATCH] do not spam connection messages --- LICENSE.txt | 3 +-- README.md | 8 +++++++- docs/whitepaper.md | 2 +- onionr/communicator.py | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index fdc16448..7d2d0a0e 100755 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,5 +1,4 @@ -Onionr Logo is licensed under Creative Commons Attribution-Share Alike 3.0 Unported -https://creativecommons.org/licenses/by-sa/4.0/ +The Onionr logo was created by [Anhar Ismail](https://github.com/anharismail) under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). GNU GENERAL PUBLIC LICENSE diff --git a/README.md b/README.md index 119f5567..8b0de5c2 100755 --- a/README.md +++ b/README.md @@ -100,4 +100,10 @@ The Tor Project and I2P developers do not own, create, or endorse this project, Tor is a trademark for the Tor Project. We do not own it. -The 'open source badge' is by Maik Ellerbrock and is licensed under a Creative Commons Attribution 4.0 International License. \ No newline at end of file +The 'open source badge' is by Maik Ellerbrock and is licensed under a Creative Commons Attribution 4.0 International License. + +## Logo + +The Onionr logo was created by [Anhar Ismail](https://github.com/anharismail) under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). + +If you modify and redistribute our code ("forking"), please use a different logo and project name to avoid confusion. Please do not use our logo in a way that makes it seem like we endorse you without permission. \ No newline at end of file diff --git a/docs/whitepaper.md b/docs/whitepaper.md index 8428b8a6..ca2eb080 100755 --- a/docs/whitepaper.md +++ b/docs/whitepaper.md @@ -135,7 +135,7 @@ Once quantum safe algorithms are more mature and have decent high level librarie # Comparisons to other P2P software -Since Onionr is far from the first to implement many of these ideas (on their own), this section compares Onionr to other networks +Since Onionr is far from the first to implement many of these ideas (on their own), this section compares Onionr to other networks, using points we consider to be the most important. ![network comparison image](network-comparison.png) diff --git a/onionr/communicator.py b/onionr/communicator.py index c2528cef..263328f4 100755 --- a/onionr/communicator.py +++ b/onionr/communicator.py @@ -437,11 +437,11 @@ class OnionrCommunicatorDaemon: if self.shutdown: return if self.peerAction(address, 'ping') == 'pong!': - logger.info('Connected to ' + address) time.sleep(0.1) if address not in mainPeerList: networkmerger.mergeAdders(address, self._core) if address not in self.onlinePeers: + logger.info('Connected to ' + address) self.onlinePeers.append(address) self.connectTimes[address] = self._core._utils.getEpoch() retData = address