-import socket, os, stat
+import socket, os, stat, struct, pwd, errno
from statemachine import StateMachine
from libtuer import logger
SO_PEERCRED = 17 # DO - NOT - TOUCH
class TySocket():
CMDs = {
b'buzz': StateMachine.CMD_BUZZ,
- b'open': StateMachine.CMD_OPEN,
+ b'unlock': StateMachine.CMD_UNLOCK,
}
def __init__(self, sm):
except KeyboardInterrupt:
raise # forward Ctrl-C to the outside
except Exception as e:
- logger.error("TySocket: Something went wrong: %s" % str(e))
-
- def stop(self):
- pass
+ logger.critical("TySocket: Something went wrong: %s" % str(e))