Browse Source

Fixed calls to aread().

pull/2/head 1.3.1
Richard Neumann 4 years ago
parent
commit
b7133cc9d4
  1. 8
      rcon/proto.py

8
rcon/proto.py

@ -76,7 +76,7 @@ class Type(Enum):
@classmethod
async def aread(cls, file: IO) -> Type:
"""Reads the type from an asynchronous file-like object."""
return cls(await LittleEndianSignedInt32.read(file))
return cls(await LittleEndianSignedInt32.aread(file))
@classmethod
def read(cls, file: IO) -> Type:
@ -104,9 +104,9 @@ class Packet(NamedTuple):
@classmethod
async def aread(cls, file: IO) -> Packet:
"""Reads a packet from an asynchronous file-like object."""
size = await LittleEndianSignedInt32.read(file)
id_ = await LittleEndianSignedInt32.read(file)
type_ = await Type.read(file)
size = await LittleEndianSignedInt32.aread(file)
id_ = await LittleEndianSignedInt32.aread(file)
type_ = await Type.aread(file)
payload = await file.read(size - 10)
terminator = await file.read(2)

Loading…
Cancel
Save