1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/common/protocol/headers.proto

22 lines
457 B
Protocol Buffer
Raw Normal View History

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