mirror of https://github.com/YGGverse/pymaster.git
yggdrasilhalf-lifeipv6ipv4half-life-serverpythonhlmasterpymaster-2pymasterpymaster-yggdrasilmaster-serverpymaster-ipv6
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
292 B
16 lines
292 B
9 years ago
|
class MasterProtocol:
|
||
|
|
||
|
# Client To Master
|
||
|
clientQuery = '1'
|
||
|
|
||
|
# Server To Master
|
||
|
challengeRequest = 'q'
|
||
|
addServer = '0'
|
||
|
removeServer = 'b'
|
||
|
|
||
|
# Master To Client
|
||
|
queryPacketHeader = b'\xff\xff\xff\xff\x66\x0a'
|
||
|
|
||
|
# Master To Server
|
||
|
challengePacketHeader = b'\xff\xff\xff\xff\x73\x0a'
|