mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-09-16 23:09:16 +02:00
Rename request to response
Small mistake
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
syntax = "proto2";
|
||||
package sv_rcon;
|
||||
|
||||
enum request_t
|
||||
enum response_t
|
||||
{
|
||||
SERVERDATA_RESPONSE_VALUE = 0;
|
||||
SERVERDATA_RESPONSE_UPDATE = 1;
|
||||
@@ -11,10 +11,10 @@ enum request_t
|
||||
SERVERDATA_RESPONSE_REMOTEBUG = 5;
|
||||
}
|
||||
|
||||
message request
|
||||
message response
|
||||
{
|
||||
optional int32 responseID = 1;
|
||||
optional request_t responseType = 2;
|
||||
optional string responseBuf = 3;
|
||||
optional string responseVal = 4;
|
||||
optional int32 responseID = 1;
|
||||
optional response_t responseType = 2;
|
||||
optional string responseBuf = 3;
|
||||
optional string responseVal = 4;
|
||||
}
|
||||
|
Reference in New Issue
Block a user