2019-12-20 08:34:52 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
2019-07-11 07:39:35 +00:00
|
|
|
|
2019-12-20 08:34:52 +00:00
|
|
|
remove an online peer from the pool in a communicator instance
|
|
|
|
"""
|
2020-07-26 03:28:32 +00:00
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from deadsimplekv import DeadSimpleKV
|
2019-12-20 08:34:52 +00:00
|
|
|
"""
|
2019-07-11 07:39:35 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-12-20 08:34:52 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
2020-07-31 01:15:36 +00:00
|
|
|
def remove_online_peer(kv, peer):
|
2019-12-20 08:34:52 +00:00
|
|
|
"""Remove an online peer."""
|
2019-07-11 07:39:35 +00:00
|
|
|
try:
|
2020-07-29 08:57:06 +00:00
|
|
|
del kv.get('connectTimes')[peer]
|
2019-07-11 07:39:35 +00:00
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
try:
|
2020-07-26 20:49:34 +00:00
|
|
|
del kv.get('dbTimestamps')[peer]
|
2019-07-11 07:39:35 +00:00
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
try:
|
2020-07-26 03:28:32 +00:00
|
|
|
kv.get('onlinePeers').remove(peer)
|
2019-07-11 07:39:35 +00:00
|
|
|
except ValueError:
|
2019-12-20 08:34:52 +00:00
|
|
|
pass
|