Xray-core/common/protocol/headers.proto

21 lines
445 B
Protocol Buffer
Raw Normal View History

2020-11-25 13:01:53 +02:00
syntax = "proto3";
package xray.common.protocol;
option csharp_namespace = "Xray.Common.Protocol";
2020-12-04 03:36:16 +02:00
option go_package = "github.com/xtls/xray-core/common/protocol";
2020-11-25 13:01:53 +02:00
option java_package = "com.xray.common.protocol";
option java_multiple_files = true;
enum SecurityType {
UNKNOWN = 0;
AUTO = 2;
AES128_GCM = 3;
CHACHA20_POLY1305 = 4;
NONE = 5; // [DEPRECATED 2023-06]
2021-03-05 10:41:18 +02:00
ZERO = 6;
2020-11-25 13:01:53 +02:00
}
message SecurityConfig {
SecurityType type = 1;
}