Peter Surda
c85d52b8e8
- asyncore is now on by default - inv announcements implemented - bandwidth limit implemented / fixed - stats on download / upload speed now work - make prints into logger - limit knownNodes to 20k as it was before - green light fixed - other minor fixes
14 lines
544 B
Python
14 lines
544 B
Python
import Queue
|
|
from class_objectProcessorQueue import ObjectProcessorQueue
|
|
|
|
workerQueue = Queue.Queue()
|
|
UISignalQueue = Queue.Queue()
|
|
addressGeneratorQueue = Queue.Queue()
|
|
# receiveDataThreads dump objects they hear on the network into this queue to be processed.
|
|
objectProcessorQueue = ObjectProcessorQueue()
|
|
invQueue = Queue.Queue()
|
|
portCheckerQueue = Queue.Queue()
|
|
peerDiscoveryQueue = Queue.Queue()
|
|
apiAddressGeneratorReturnQueue = Queue.Queue(
|
|
) # The address generator thread uses this queue to get information back to the API thread.
|