PiBoSo Official Forum

GP Bikes => General Discussion => Documentation => Topic started by: PiBoSo on December 27, 2020, 04:51:42 PM

Title: Remote Admin
Post by: PiBoSo on December 27, 2020, 04:51:42 PM
It is possible to connect to a dedicated server to send admin commands.
The feature is off by default and must be enabled:
https://forum.piboso.com/index.php?topic=26.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: https://forum.piboso.com/index.php?topic=26.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: https://www.kartracing-pro.com/downloads/remoteadmin.c