mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-12 15:27:16 -05:00
19 lines
347 B
Protocol Buffer
19 lines
347 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 {
|
|
NONE = 0;
|
|
LEGACY = 1;
|
|
AUTO = 2;
|
|
AES128_GCM = 3;
|
|
CHACHA20_POLY1305 = 4;
|
|
}
|
|
|
|
message SecurityConfig {
|
|
SecurityType type = 1;
|
|
}
|