mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
21 lines
469 B
Protocol Buffer
21 lines
469 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package sv_rcon;
|
||
|
|
||
|
enum request_t
|
||
|
{
|
||
|
SERVERDATA_RESPONSE_VALUE = 0;
|
||
|
SERVERDATA_RESPONSE_UPDATE = 1;
|
||
|
SERVERDATA_RESPONSE_AUTH = 2;
|
||
|
SERVERDATA_RESPONSE_CONSOLE_LOG = 3;
|
||
|
SERVERDATA_RESPONSE_STRING = 4;
|
||
|
SERVERDATA_RESPONSE_REMOTEBUG = 5;
|
||
|
}
|
||
|
|
||
|
message request
|
||
|
{
|
||
|
optional int32 responseID = 1;
|
||
|
optional request_t responseType = 2;
|
||
|
optional string responseBuf = 3;
|
||
|
optional string responseVal = 4;
|
||
|
}
|