r5sdk/r5dev/resource/protobuf/sv_rcon.proto
Amos e864f773a1 Add protobuf files
.proto for sv_rcon and cl_rcon + compiled results
2022-02-11 00:38:50 +01:00

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;
}