GC-Proto/proto/QueryCurrRegionHttpRsp.proto

24 lines
566 B
Protocol Buffer
Raw Normal View History

2023-02-28 04:12:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-03-01 05:23:23 +03:00
import "ForceUpdateInfo.proto";
2023-02-28 04:12:44 +03:00
import "RegionInfo.proto";
import "StopServerInfo.proto";
// Name: AHMNLAOFJBB
2023-03-01 05:23:23 +03:00
message QueryCurrRegionHttpRsp {
2023-02-28 04:12:44 +03:00
int32 retcode = 1;
string msg = 2;
RegionInfo region_info = 3;
2023-03-01 05:23:23 +03:00
bytes client_secret_key = 11;
bytes region_custom_config_encrypted = 12;
bytes client_region_custom_config_encrypted = 13;
2023-02-28 04:12:44 +03:00
string HHDIBBJDLAN = 14;
oneof detail {
2023-03-01 05:23:23 +03:00
ForceUpdateInfo force_udpate = 4;
2023-02-28 04:12:44 +03:00
StopServerInfo stop_server = 5;
}
}