mirror of https://github.com/v2ray/v2ray-core
14 lines
282 B
Protocol Buffer
14 lines
282 B
Protocol Buffer
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;
|
|
}
|