1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-03 06:30:42 +00:00

comments for typed messages

This commit is contained in:
Darien Raymond 2018-01-04 11:24:17 +01:00
parent 24395a3e60
commit c5d356545e
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
3 changed files with 4 additions and 3 deletions

View File

@ -13,6 +13,6 @@ message User {
uint32 level = 1;
string email = 2;
// Protocol specific account information.
// Protocol specific account information. Must be the account proto in one of the proxies.
v2ray.core.common.serial.TypedMessage account = 3;
}

View File

@ -19,7 +19,7 @@ message TransportConfig {
// Type of network that this settings supports.
TransportProtocol protocol = 1;
// Specific settings.
// Specific settings. Must be of the transports.
v2ray.core.common.serial.TypedMessage settings = 2;
}
@ -32,6 +32,7 @@ message StreamConfig {
// Type of security. Must be a message name of the settings proto.
string security_type = 3;
// Settings for transport security. For now the only choice is TLS.
repeated v2ray.core.common.serial.TypedMessage security_settings = 4;
}

View File

@ -11,4 +11,4 @@ import "v2ray.com/core/common/serial/typed_message.proto";
message Config {
reserved 1;
v2ray.core.common.serial.TypedMessage header_settings = 2;
}
}