Peter Surda
9683c879bc
- Network status UI works but current speed isn't implemented yet - Track per connection and global transferred bytes - Add locking to write queue so that other threads can put stuff there - send ping on timeout (instead of closing the connection) - implement open port checker (untested, never triggered yet) - error handling on IO
12 lines
484 B
Python
12 lines
484 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()
|
|
portCheckerQueue = Queue.Queue()
|
|
apiAddressGeneratorReturnQueue = Queue.Queue(
|
|
) # The address generator thread uses this queue to get information back to the API thread.
|