Merge pull request #549 from dmcdad/patch-1

Fix timeout problem in interface.py.
This commit is contained in:
ThomasV 2014-01-17 21:57:06 -08:00
commit 8c9a26cbf7
1 changed files with 3 additions and 1 deletions

View File

@ -427,7 +427,9 @@ class Interface(threading.Thread):
except ssl.SSLError:
timeout = True
except socket.error, err:
if err.errno in [11, 10035]:
if err.errno == 60:
timeout = True
elif err.errno in [11, 10035]:
print_error("socket errno", err.errno)
time.sleep(0.1)
continue