CMDs = {
b'buzz': StateMachine.CMD_BUZZ,
b'unlock': StateMachine.CMD_UNLOCK,
+ b'lock': StateMachine.CMD_LOCK,
+ b'fallback_mode_on': StateMachine.CMD_FALLBACK_ON,
+ b'fallback_mode_off': StateMachine.CMD_FALLBACK_OFF,
}
def __init__(self, sm):
# _answer will be called, and it will close the connection
else:
waynesend(conn, 'Command not found')
- conn.close()
except KeyboardInterrupt:
raise # forward Ctrl-C to the outside
+ except socket.timeout:
+ # it's okay
+ logger.info("TySocket: Connection timed out")
except Exception as e:
logger.critical("TySocket: Something went wrong: %s" % str(e))
+ conn.close()