From 02e09a7d9741ab9b7cbdd444fd0892ca0e5a728b Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Tue, 22 Dec 2020 14:08:06 +0100 Subject: [PATCH] Renamed Type values to actual protocol names. --- rcon/proto.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/rcon/proto.py b/rcon/proto.py index e7286cd..7d72831 100644 --- a/rcon/proto.py +++ b/rcon/proto.py @@ -56,9 +56,10 @@ class LittleEndianSignedInt32(int): class Type(Enum): """Available packet types.""" - LOGIN = 3 - COMMAND = 2 - RESPONSE = 0 + SERVERDATA_AUTH = 3 + SERVERDATA_AUTH_RESPONSE = 2 + SERVERDATA_EXECCOMMAND = 2 + SERVERDATA_RESPONSE_VALUE = 0 def __int__(self): """Returns the actual integer value.""" @@ -106,12 +107,13 @@ class Packet(NamedTuple): @classmethod def from_args(cls, *args: str) -> Packet: """Creates a command packet.""" - return cls(random_request_id(), Type.COMMAND, ' '.join(args)) + return cls(random_request_id(), Type.SERVERDATA_EXECCOMMAND, + ' '.join(args)) @classmethod def from_login(cls, passwd: str) -> Packet: """Creates a login packet.""" - return cls(random_request_id(), Type.LOGIN, passwd) + return cls(random_request_id(), Type.SERVERDATA_AUTH, passwd) class Client: