1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-06 13:25:13 -04:00
v2fly/proxy/vmess/account.proto

19 lines
628 B
Protocol Buffer
Raw Normal View History

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