mirror of https://github.com/YGGverse/pymaster.git
yggdrasilhalf-lifeipv6ipv4half-life-serverpythonmaster-serverpymaster-ipv6hlmasterpymaster-2pymasterpymaster-yggdrasil
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.
20 lines
326 B
20 lines
326 B
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' |
|
|
|
#Debug |
|
statusRequest = 's' |
|
|
|
|