1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-05-19 18:59:08 -04:00

rename TypedSettings to TypedMessage

This commit is contained in:
Darien Raymond
2016-12-15 11:51:09 +01:00
parent 5bbbdc05de
commit 50bc195f7f
52 changed files with 451 additions and 461 deletions

View File

@@ -5,12 +5,12 @@ option go_package = "protocol";
option java_package = "com.v2ray.core.common.protocol";
option java_outer_classname = "UserProto";
import "v2ray.com/core/common/loader/type.proto";
import "v2ray.com/core/common/serial/typed_message.proto";
message User {
uint32 level = 1;
string email = 2;
// Protocol specific account information.
v2ray.core.common.loader.TypedSettings account = 3;
v2ray.core.common.serial.TypedMessage account = 3;
}