1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-06 01:05:35 -05:00

Fix compatibility with Actinium

This commit is contained in:
Darien Raymond
2016-12-13 10:45:21 +01:00
parent a9790d59f0
commit 76da31c755
5 changed files with 29 additions and 15 deletions

View File

@@ -6,11 +6,12 @@ option java_package = "com.v2ray.core.common.protocol";
option java_outer_classname = "HeadersProto";
enum SecurityType {
NONE = 0;
UNKNOWN = 0;
LEGACY = 1;
AUTO = 2;
AES128_GCM = 3;
CHACHA20_POLY1305 = 4;
NONE = 5;
}
message SecurityConfig {