Peter Surda
0b07b1c89a
- allow loopback addresses, now you can bind different loopback IP addresses on a single system and they will auto-cross-connect - always listen for discovery on 0.0.0.0 - [network] - bind now also applies for the TCP socket as well as UDP socket - closing socket iterator fix
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
import threading
|
|
import time
|
|
|
|
from bmconfigparser import BMConfigParser
|
|
from debug import logger
|
|
from helper_threading import StoppableThread
|
|
from network.bmproto import BMProto
|
|
from network.connectionpool import BMConnectionPool
|
|
from network.udp import UDPSocket
|
|
import state
|
|
|
|
class AnnounceThread(threading.Thread, StoppableThread):
|
|
def __init__(self):
|
|
threading.Thread.__init__(self, name="Announcer")
|
|
self.initStop()
|
|
self.name = "Announcer"
|
|
logger.info("init announce thread")
|
|
|
|
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)
|
|
|
|
def announceSelf(self):
|
|
for connection in BMConnectionPool().udpSockets.values():
|
|
if not connection.announcing:
|
|
continue
|
|
for stream in state.streamsInWhichIAmParticipating:
|
|
addr = (stream, state.Peer('127.0.0.1', BMConfigParser().safeGetInt("bitmessagesettings", "port")), time.time())
|
|
connection.append_write_buf(BMProto.assembleAddr([addr]))
|