Skip to content

Commit

Permalink
reset protocol values to pymaster.py implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost committed Dec 26, 2023
1 parent 3c7ec11 commit c6610ec
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions protocol.py
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit c6610ec

Please sign in to comment.