X-Git-Url: https://git.ralfj.de/saartuer.git/blobdiff_plain/8b136f42bf0c83f8aee52c315f7dbebc371cce1b..36d7c6cbf03d4096480d14d1b03aa758722251f6:/tysock.py diff --git a/tysock.py b/tysock.py index 3951d1f..cd11214 100644 --- a/tysock.py +++ b/tysock.py @@ -1,4 +1,4 @@ -import socket, os, stat +import socket, os, stat, struct, pwd from statemachine import StateMachine from libtuer import logger SO_PEERCRED = 17 # DO - NOT - TOUCH @@ -26,7 +26,7 @@ def forcerm(name): class TySocket(): CMDs = { b'buzz': StateMachine.CMD_BUZZ, - b'open': StateMachine.CMD_OPEN, + b'unlock': StateMachine.CMD_UNLOCK, } def __init__(self, sm): @@ -75,6 +75,3 @@ class TySocket(): raise # forward Ctrl-C to the outside except Exception as e: logger.error("TySocket: Something went wrong: %s" % str(e)) - - def stop(self): - pass