The randomly generated request ID that is sent with every
message to the RCON server. Used to ensure that the commands
sent to and received from the server are ours, and not another
user's.
Starts listening on the socket for packets sent by the RCON
server. Returns a boolean that specifies if the socket has
started listening. Note: onData must accept a List
Returns a little Endian int32 interpreted from 4 Uint8s
retrieved from data (Uint8List) starting at an index of
start (int). The Uint8list length must be at least 4 and
start must be data.length - 4 or smaller. Returns -1
if processing has failed.
Returns a Uint8Lit that contains only 4 integers starting
from originalstart. Start defaults to 0 if not set. If
4 integers cannot be copied from the list (e.g. list length
is less than 4 or start is too large to copy 4 integers), a
list of -1, -1, -1, -1 will be returned. Returns 0 in place
of any integer if that location is empty in the source list.