mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
503 B
17 lines
503 B
syntax = "proto3";
|
|
|
|
package xray.transport.internet.quic;
|
|
option csharp_namespace = "Xray.Transport.Internet.Quic";
|
|
option go_package = "github.com/xtls/xray-core/transport/internet/quic";
|
|
option java_package = "com.xray.transport.internet.quic";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/serial/typed_message.proto";
|
|
import "common/protocol/headers.proto";
|
|
|
|
message Config {
|
|
string key = 1;
|
|
xray.common.protocol.SecurityConfig security = 2;
|
|
xray.common.serial.TypedMessage header = 3;
|
|
}
|