2016-09-18 00:41:21 +02:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2016-09-26 15:14:16 +02:00
|
|
|
package v2ray.core.proxy.vmess;
|
2016-12-23 00:24:28 +01:00
|
|
|
option csharp_namespace = "V2Ray.Core.Proxy.Vmess";
|
2016-09-18 00:41:21 +02:00
|
|
|
option go_package = "vmess";
|
2016-09-26 15:14:16 +02:00
|
|
|
option java_package = "com.v2ray.core.proxy.vmess";
|
|
|
|
option java_outer_classname = "AccountProto";
|
|
|
|
|
2016-12-07 21:43:41 +01:00
|
|
|
import "v2ray.com/core/common/protocol/headers.proto";
|
|
|
|
|
2016-10-12 18:43:55 +02:00
|
|
|
message Account {
|
2016-12-21 12:53:31 +01:00
|
|
|
// ID of the account, in the form of an UUID, e.g., "66ad4540-b58c-4ad2-9926-ea63445a9b57".
|
2016-09-18 00:41:21 +02:00
|
|
|
string id = 1;
|
2016-12-21 12:53:31 +01:00
|
|
|
// Number of alternative IDs. Client and server must share the same number.
|
2016-09-24 23:11:58 +02:00
|
|
|
uint32 alter_id = 2;
|
2016-12-21 12:53:31 +01:00
|
|
|
// Security settings. Only applies to client side.
|
2016-12-11 14:58:53 +01:00
|
|
|
v2ray.core.common.protocol.SecurityConfig security_settings = 3;
|
2016-09-18 00:41:21 +02:00
|
|
|
}
|