Moved addrQueue to network module

This commit is contained in:
anand k 2024-06-23 10:57:57 +05:30
parent 5cd4ecb437
commit 49e89ecdf2
No known key found for this signature in database
GPG Key ID: 515AC24FA525DDE0
3 changed files with 2 additions and 6 deletions

View File

@ -9,6 +9,7 @@ dandelion_ins = Dandelion()
# network queues # network queues
invQueue = MultiQueue() invQueue = MultiQueue()
addrQueue = MultiQueue()
__all__ = ["StoppableThread"] __all__ = ["StoppableThread"]

View File

@ -7,7 +7,7 @@ from six.moves import queue
# magic imports! # magic imports!
import connectionpool import connectionpool
from protocol import assembleAddrMessage from protocol import assembleAddrMessage
from queues import addrQueue # FIXME: init with queue from network import addrQueue # FIXME: init with queue
from threads import StoppableThread from threads import StoppableThread

View File

@ -6,10 +6,6 @@ import time
from six.moves import queue from six.moves import queue
from network.multiqueue import MultiQueue
class ObjectProcessorQueue(queue.Queue): class ObjectProcessorQueue(queue.Queue):
"""Special queue class using lock for `.threads.objectProcessor`""" """Special queue class using lock for `.threads.objectProcessor`"""
@ -43,7 +39,6 @@ addressGeneratorQueue = queue.Queue()
#: `.network.ReceiveQueueThread` instances dump objects they hear #: `.network.ReceiveQueueThread` instances dump objects they hear
#: on the network into this queue to be processed. #: on the network into this queue to be processed.
objectProcessorQueue = ObjectProcessorQueue() objectProcessorQueue = ObjectProcessorQueue()
addrQueue = MultiQueue()
portCheckerQueue = queue.Queue() portCheckerQueue = queue.Queue()
receiveDataQueue = queue.Queue() receiveDataQueue = queue.Queue()
#: The address generator thread uses this queue to get information back #: The address generator thread uses this queue to get information back