mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 12:39:21 +02:00
17 lines
534 B
Protocol Buffer
17 lines
534 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package xray.transport;
|
||
|
option csharp_namespace = "Xray.Transport";
|
||
|
option go_package = "github.com/xtls/xray-core/v1/transport";
|
||
|
option java_package = "com.xray.transport";
|
||
|
option java_multiple_files = true;
|
||
|
|
||
|
import "transport/internet/config.proto";
|
||
|
|
||
|
// Global transport settings. This affects all type of connections that go
|
||
|
// through Xray. Deprecated. Use each settings in StreamConfig.
|
||
|
message Config {
|
||
|
option deprecated = true;
|
||
|
repeated xray.transport.internet.TransportConfig transport_settings = 1;
|
||
|
}
|