GC-Proto/proto/DataResVersionNotify.proto

28 lines
680 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ResVersionConfig.proto";
2023-02-28 04:12:44 +03:00
// Name: CLPJPELPELM
// CmdId: 140
2023-02-18 04:48:44 +03:00
message DataResVersionNotify {
2023-02-28 04:12:44 +03:00
// Name: NFPBPLIEDNC
enum DataResVersionOpType {
OP_TYPE_NONE = 0;
OP_TYPE_RELOGIN = 1;
OP_TYPE_MP_RELOGIN = 2;
}
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
ResVersionConfig next_res_version_config = 14;
uint32 client_data_version = 1;
DataResVersionOpType op_type = 13;
bool is_data_need_relogin = 7;
string client_md5 = 11;
string client_silence_version_suffix = 6;
string client_version_suffix = 9;
string client_silence_md5 = 15;
uint32 client_silence_data_version = 10;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00