|
@@ -8,6 +8,8 @@ option java_multiple_files = true;
|
|
|
|
|
|
|
|
import "google/protobuf/any.proto";
|
|
import "google/protobuf/any.proto";
|
|
|
|
|
|
|
|
|
|
+import "common/protoext/extensions.proto";
|
|
|
|
|
+
|
|
|
enum TransportProtocol {
|
|
enum TransportProtocol {
|
|
|
TCP = 0;
|
|
TCP = 0;
|
|
|
UDP = 1;
|
|
UDP = 1;
|
|
@@ -94,3 +96,8 @@ message SocketConfig {
|
|
|
|
|
|
|
|
int32 tcp_keep_alive_interval = 8;
|
|
int32 tcp_keep_alive_interval = 8;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+message NoneSecurity {
|
|
|
|
|
+ option (v2ray.core.common.protoext.message_opt).type = "security";
|
|
|
|
|
+ option (v2ray.core.common.protoext.message_opt).short_name = "none";
|
|
|
|
|
+}
|