r5sdk/r5dev/resource/protobuf/sv_rcon.proto
Kawe Mazidjatari 608f14e920 Update protobuf source files
Added new field 'messageType'; renamed 'responseID' to 'messageID', renamed 'responseBuf' to 'responseMsg'.
2023-03-27 01:37:15 +02:00

23 lines
547 B
Protocol Buffer

syntax = "proto3";
package sv_rcon;
option optimize_for = LITE_RUNTIME;
enum response_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 response
{
optional int32 messageID = 1;
optional int32 messageType = 2;
optional response_t responseType = 3;
optional string responseMsg = 4;
optional string responseVal = 5;
}