mirror of https://github.com/v2ray/v2ray-core
comments for typed messages
parent
24395a3e60
commit
c5d356545e
|
@ -13,6 +13,6 @@ message User {
|
||||||
uint32 level = 1;
|
uint32 level = 1;
|
||||||
string email = 2;
|
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;
|
v2ray.core.common.serial.TypedMessage account = 3;
|
||||||
}
|
}
|
|
@ -19,7 +19,7 @@ message TransportConfig {
|
||||||
// Type of network that this settings supports.
|
// Type of network that this settings supports.
|
||||||
TransportProtocol protocol = 1;
|
TransportProtocol protocol = 1;
|
||||||
|
|
||||||
// Specific settings.
|
// Specific settings. Must be of the transports.
|
||||||
v2ray.core.common.serial.TypedMessage settings = 2;
|
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.
|
// Type of security. Must be a message name of the settings proto.
|
||||||
string security_type = 3;
|
string security_type = 3;
|
||||||
|
|
||||||
|
// Settings for transport security. For now the only choice is TLS.
|
||||||
repeated v2ray.core.common.serial.TypedMessage security_settings = 4;
|
repeated v2ray.core.common.serial.TypedMessage security_settings = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue