bump timeouts in http and socks python scripts

This commit is contained in:
Arvid Norberg
2013-10-04 15:51:32 +00:00
parent d669d94f88
commit 590c0d876c
2 changed files with 2 additions and 2 deletions

View File

@@ -256,6 +256,6 @@ if __name__ == '__main__':
info('Listening on port %d...' % listen_port)
server = MyTCPServer(('localhost', listen_port), SocksHandler)
server.timeout = 50
server.timeout = 120
while True:
server.handle_request()