mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Added new field 'messageType'; renamed 'responseID' to 'messageID', renamed 'responseBuf' to 'responseMsg'.
23 lines
559 B
Protocol Buffer
23 lines
559 B
Protocol Buffer
syntax = "proto3";
|
|
package cl_rcon;
|
|
option optimize_for = LITE_RUNTIME;
|
|
|
|
enum request_t
|
|
{
|
|
SERVERDATA_REQUEST_VALUE = 0;
|
|
SERVERDATA_REQUEST_SETVALUE = 1;
|
|
SERVERDATA_REQUEST_EXECCOMMAND = 2;
|
|
SERVERDATA_REQUEST_AUTH = 3;
|
|
SERVERDATA_REQUEST_SEND_CONSOLE_LOG = 4;
|
|
SERVERDATA_REQUEST_SEND_REMOTEBUG = 5;
|
|
}
|
|
|
|
message request
|
|
{
|
|
optional int32 messageID = 1;
|
|
optional int32 messageType = 2;
|
|
optional request_t requestType = 3;
|
|
optional string requestMsg = 4;
|
|
optional string requestVal = 5;
|
|
}
|