mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-09-16 14:30:28 +00:00
https://github.com/XTLS/Xray-core/pull/5640#issuecomment-4611416512 https://github.com/XTLS/Xray-core/pull/6303#issuecomment-4668055274 --------- Co-authored-by: Meow <197331664+Meo597@users.noreply.github.com>
19 lines
396 B
Protocol Buffer
19 lines
396 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.common.protocol;
|
|
option csharp_namespace = "Xray.Common.Protocol";
|
|
option go_package = "github.com/xtls/xray-core/common/protocol";
|
|
option java_package = "com.xray.common.protocol";
|
|
option java_multiple_files = true;
|
|
|
|
enum SecurityType {
|
|
UNKNOWN = 0;
|
|
AUTO = 2;
|
|
AES128_GCM = 3;
|
|
CHACHA20_POLY1305 = 4;
|
|
}
|
|
|
|
message SecurityConfig {
|
|
SecurityType type = 1;
|
|
}
|