github.com/v2fly/v2ray-core/v5@v5.16.2-0.20240507031116-8191faa6e095/transport/internet/quic/config.proto (about)

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