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";
|
2021-02-17 04:31:50 +08:00
|
|
|
option go_package = "github.com/v2fly/v2ray-core/v4/proxy/vmess";
|
2016-09-26 15:14:16 +02:00
|
|
|
option java_package = "com.v2ray.core.proxy.vmess";
|
2017-02-03 23:15:10 +01:00
|
|
|
option java_multiple_files = true;
|
2016-09-26 15:14:16 +02:00
|
|
|
|
2020-08-24 20:10:26 +08:00
|
|
|
import "common/protocol/headers.proto";
|
2016-12-07 21:43:41 +01:00
|
|
|
|
2016-10-12 18:43:55 +02:00
|
|
|
message Account {
|
2020-10-05 08:36:40 +08:00
|
|
|
// ID of the account, in the form of a 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;
|
2020-06-08 14:20:31 +08:00
|
|
|
// Define tests enabled for this account
|
|
|
|
string tests_enabled = 4;
|
2016-09-18 00:41:21 +02:00
|
|
|
}
|