• Welcome to Kart Racing Pro Official Forum. Please login or sign up.
 
March 28, 2024, 03:41:21 PM

News:

Kart Racing Pro release13e available! :)


Remote Admin

Started by PiBoSo, July 10, 2020, 04:55:56 PM

Previous topic - Next topic

PiBoSo

July 10, 2020, 04:55:56 PM Last Edit: August 23, 2020, 12:46:52 AM by PiBoSo
It is possible to connect to a dedicated server to send admin commands.
The feature is off by default and must be enabled:
http://forum.kartracing-pro.com/index.php?topic=8.0
http://forum.kartracing-pro.com/index.php?topic=3609.0
Only 1 client can connect to the server.

Communication is made with UDP sockets and strings terminated with "\n".

Send "CONNECT" followed by the connection password ( empty string if no password ).
Reply:
OK -> connected
FULL -> another client is already connected
WRONGPASSWORD -> wrong password

Data format is "CMD" followed by an incremental message ID and then the command.
The possible commands are:
"QUIT": closes the server
"MSG": followed by the chat message, that also allows to send commands ( see the dedicated server documentation for more info: http://forum.kartracing-pro.com/index.php?topic=8.0 )

The server will send an ACK followed by the message ID for each CMD received.

Send "KEEPALIVE" every 15 seconds to keep the connection active.
The server sends "ALIVE" to report that the connection is active.

Send "DISCONNECT" to correctly close the connection.


Example source code can be downloaded at this link: http://www.kartracing-pro.com/downloads/remoteadmin.c

PiBoSo

Starting with Release11f, the remote admin protocol has been changed to make it more robust, adding ACK and KEEPALIVE messages.

First post updated.