Browse Source

Maybe better andling of connection reset error

feature/balanceutils
klonfish 7 years ago committed by klonfish
parent
commit
2bd6661ef4
  1. 8
      wii-pair/daemon.py

8
wii-pair/daemon.py

@ -173,7 +173,6 @@ try: @@ -173,7 +173,6 @@ try:
conn, addr = s.accept()
while True:
try:
m = conn.recv(1)
if len(m) == 0:
@ -193,9 +192,10 @@ try: @@ -193,9 +192,10 @@ try:
v = int(round(w.pos_y*100))
r += struct.pack('b', v)
conn.send(r)
except ConnectionResetError:
continue
try:
conn.send(r)
except ConnectionResetError:
break
except (KeyboardInterrupt, SystemExit):
t1.stop = True
t2.stop = True

Loading…
Cancel
Save