Peter Surda
a69732f060
- addrthread is supposed to spread addresses as they appear. This was never finished during migration to asyncore - conservative to prevent flood and loops - randomises order - move protocol constants into a separate file - move addr packet creation into a separate file - see #1575
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
"""
|
|
src/network/announcethread.py
|
|
=================================
|
|
"""
|
|
|
|
import time
|
|
|
|
import state
|
|
|
|
from bmconfigparser import BMConfigParser
|
|
from network.assemble import assemble_addr
|
|
from network.connectionpool import BMConnectionPool
|
|
from network.udp import UDPSocket
|
|
from node import Peer
|
|
from threads import StoppableThread
|
|
|
|
|
|
class AnnounceThread(StoppableThread):
|
|
"""A thread to manage regular announcing of this node"""
|
|
name = "Announcer"
|
|
|
|
def run(self):
|
|
lastSelfAnnounced = 0
|
|
while not self._stopped and state.shutdown == 0:
|
|
processed = 0
|
|
if lastSelfAnnounced < time.time() - UDPSocket.announceInterval:
|
|
self.announceSelf()
|
|
lastSelfAnnounced = time.time()
|
|
if processed == 0:
|
|
self.stop.wait(10)
|
|
|
|
@staticmethod
|
|
def announceSelf():
|
|
"""Announce our presence"""
|
|
for connection in BMConnectionPool().udpSockets.values():
|
|
if not connection.announcing:
|
|
continue
|
|
for stream in state.streamsInWhichIAmParticipating:
|
|
addr = (
|
|
stream,
|
|
Peer(
|
|
'127.0.0.1',
|
|
BMConfigParser().safeGetInt('bitmessagesettings', 'port')),
|
|
time.time())
|
|
connection.append_write_buf(assemble_addr([addr]))
|