From c6610ecdaa2c6144aef969ea1d5ed4895759b0b0 Mon Sep 17 00:00:00 2001 From: ghost Date: Tue, 26 Dec 2023 19:26:38 +0200 Subject: [PATCH] reset protocol values to pymaster.py implementation --- protocol.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/protocol.py b/protocol.py index 2762af0..ad46c21 100644 --- a/protocol.py +++ b/protocol.py @@ -1,11 +1,12 @@ class MasterProtocol: + # Client To Master - clientQuery = b'1' + clientQuery = '1' # Server To Master - challengeRequest = b'q\xFF' - addServer = b'0\n' - removeServer = b'\x62\x0A' + challengeRequest = 'q' + addServer = '0' + removeServer = 'b' # Master To Client queryPacketHeader = b'\xff\xff\xff\xff\x66\x0a'