Browse Source

Maybe better andling of connection reset error

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

8
wii-pair/daemon.py

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

Loading…
Cancel
Save