implemented anon binary requests

This commit is contained in:
Florent 2026-02-02 11:55:18 -04:00
parent ac82eeb905
commit 3b46986dfa
5 changed files with 137 additions and 3 deletions

View file

@ -1,5 +1,10 @@
from enum import Enum
class AnonReqType(Enum):
REGIONS = 0x01
OWNER = 0x02
BASIC = 0x03 # just remote clock
class BinaryReqType(Enum):
STATUS = 0x01
KEEP_ALIVE = 0x02