| 23 | |
| 24 | |
| 25 | class ThreadingTCPServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer): |
| 26 | dispatcher_server = None # Holds the dispatcher server host/port information |
| 27 | last_communication = None # Keeps track of last communication from dispatcher |
| 28 | busy = False # Status flag |
| 29 | dead = False # Status flag |
| 30 | |
| 31 | |
| 32 | class TestHandler(SocketServer.BaseRequestHandler): |