mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-30 17:38:41 +00:00
Remove remnants of global transport
(#3792)
* Remove remenants * Generate pb.go * Remove function
This commit is contained in:
parent
297a9ae7bd
commit
7496413e5c
7 changed files with 62 additions and 298 deletions
|
@ -7,7 +7,6 @@ option java_package = "com.xray.core";
|
|||
option java_multiple_files = true;
|
||||
|
||||
import "common/serial/typed_message.proto";
|
||||
import "transport/global/config.proto";
|
||||
|
||||
// Config is the master config of Xray. Xray takes this config as input and
|
||||
// functions accordingly.
|
||||
|
@ -26,15 +25,15 @@ message Config {
|
|||
// through common.RegisterConfig.
|
||||
repeated xray.common.serial.TypedMessage app = 4;
|
||||
|
||||
// Transport settings.
|
||||
// Deprecated. Each inbound and outbound should choose their own transport
|
||||
// config. Date to remove: 2020-01-13
|
||||
xray.transport.Config transport = 5 [deprecated = true];
|
||||
|
||||
// Configuration for extensions. The config may not work if corresponding
|
||||
// extension is not loaded into Xray. Xray will ignore such config during
|
||||
// initialization.
|
||||
repeated xray.common.serial.TypedMessage extension = 6;
|
||||
|
||||
// Transport settings.
|
||||
// Deprecated. Each inbound and outbound should choose their own transport
|
||||
// config. Date to remove: 2020-01-13
|
||||
// xray.transport.Config transport = 5 [deprecated = true];
|
||||
}
|
||||
|
||||
// InboundHandlerConfig is the configuration for inbound handler.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue