GC-Proto/proto/DataResVersionNotify.proto

28 lines
671 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-04-11 06:14:48 +03:00
// CmdId: 118
// Name: AKGLNBEFBAE
2023-02-18 04:48:44 +03:00
message DataResVersionNotify {
2023-04-11 06:14:48 +03:00
// Name: NIAIEPJFONE
2023-02-28 04:12:44 +03:00
enum DataResVersionOpType {
OP_TYPE_NONE = 0;
OP_TYPE_RELOGIN = 1;
OP_TYPE_MP_RELOGIN = 2;
}
2023-02-18 04:48:44 +03:00
2023-05-21 18:18:49 +03:00
string client_md5 = 8;
2023-04-11 06:14:48 +03:00
uint32 client_silence_data_version = 6;
string client_silence_version_suffix = 9;
ResVersionConfig res_version_config = 7;
bool is_data_need_relogin = 3;
2023-05-21 18:18:49 +03:00
string client_silence_md5 = 5;
2023-04-11 06:14:48 +03:00
DataResVersionOpType op_type = 1;
uint32 client_data_version = 2;
string client_version_suffix = 14;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00