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
invQueue = MultiQueue()
addrQueue = MultiQueue()
__all__ = ["StoppableThread"]

View File

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

View File

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