mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-07-16 06:54:14 +00:00
Enhance DNS and Dialer (#341)
This commit is contained in:
parent
ad1807dd99
commit
db32ce6fd9
22 changed files with 682 additions and 290 deletions
16
transport/global/config.proto
Normal file
16
transport/global/config.proto
Normal file
|
@ -0,0 +1,16 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package xray.transport;
|
||||
option csharp_namespace = "Xray.Transport.Global";
|
||||
option go_package = "github.com/xtls/xray-core/transport/global";
|
||||
option java_package = "com.xray.transport.global";
|
||||
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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue