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