1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 17:35:23 +00:00
v2fly/common/protocol/headers.proto

22 lines
457 B
Protocol Buffer
Raw Normal View History

2016-12-07 12:08:15 +00:00
syntax = "proto3";
package v2ray.core.common.protocol;
2016-12-22 23:24:28 +00:00
option csharp_namespace = "V2Ray.Core.Common.Protocol";
2021-02-16 20:31:50 +00:00
option go_package = "github.com/v2fly/v2ray-core/v4/common/protocol";
2016-12-07 12:08:15 +00:00
option java_package = "com.v2ray.core.common.protocol";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-12-07 12:08:15 +00:00
enum SecurityType {
2016-12-13 09:45:21 +00:00
UNKNOWN = 0;
2016-12-11 13:58:53 +00:00
LEGACY = 1;
AUTO = 2;
AES128_GCM = 3;
CHACHA20_POLY1305 = 4;
2016-12-13 09:45:21 +00:00
NONE = 5;
2021-03-01 15:30:36 +00:00
ZERO = 6;
2016-12-11 13:58:53 +00:00
}
message SecurityConfig {
SecurityType type = 1;
2016-12-07 12:08:15 +00:00
}