Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
syntax = "proto3";
 
package v2ray.core.transport.internet.quic;
option csharp_namespace = "V2Ray.Core.Transport.Internet.Quic";
option go_package = "github.com/v2fly/v2ray-core/v5/transport/internet/quic";
option java_package = "com.v2ray.core.transport.internet.quic";
option java_multiple_files = true;
 
import "google/protobuf/any.proto";
import "common/protocol/headers.proto";
 
import "common/protoext/extensions.proto";
 
message Config {
  option (v2ray.core.common.protoext.message_opt).type = "transport";
  option (v2ray.core.common.protoext.message_opt).short_name = "quic";
 
  string key = 1;
  v2ray.core.common.protocol.SecurityConfig security = 2;
  google.protobuf.Any header = 3;
}