1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 10:45:22 +00:00

headers proto

This commit is contained in:
Darien Raymond 2016-12-07 13:08:15 +01:00
parent a92df58017
commit 1bc66604fa
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -0,0 +1,13 @@
syntax = "proto3";
package v2ray.core.common.protocol;
option go_package = "protocol";
option java_package = "com.v2ray.core.common.protocol";
option java_outer_classname = "HeadersProto";
enum SecurityType {
LEGACY = 0;
NONE = 1;
AES128_GCM = 2;
CHACHA20_POLY1305 = 3;
}