Set timeout on servefiles socket.

This commit is contained in:
Steveice10 2016-12-24 14:07:42 -08:00
parent 340278eca5
commit fe7646942f

View File

@ -67,6 +67,7 @@ try:
print("Sending URL(s) to " + ip + ":5000...")
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.settimeout(10)
sock.connect((ip, 5000))
sock.sendall(struct.pack('!L', len(payloadBytes)) + payloadBytes)
while len(sock.recv(1)) < 1: