2016-09-30 10:53:40 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package v2ray.core.transport;
|
2016-12-22 18:24:28 -05:00
|
|
|
option csharp_namespace = "V2Ray.Core.Transport";
|
2022-01-02 10:16:23 -05:00
|
|
|
option go_package = "github.com/v2fly/v2ray-core/v5/transport";
|
2016-09-30 10:53:40 -04:00
|
|
|
option java_package = "com.v2ray.core.transport";
|
2017-02-03 17:15:10 -05:00
|
|
|
option java_multiple_files = true;
|
2016-09-30 10:53:40 -04:00
|
|
|
|
2020-08-24 08:10:26 -04:00
|
|
|
import "transport/internet/config.proto";
|
2016-10-02 17:43:58 -04:00
|
|
|
|
2020-10-04 20:36:40 -04:00
|
|
|
// Global transport settings. This affects all type of connections that go
|
|
|
|
// through V2Ray. Deprecated. Use each settings in StreamConfig.
|
2016-09-30 10:53:40 -04:00
|
|
|
message Config {
|
2020-11-20 02:18:44 -05:00
|
|
|
option deprecated = true;
|
2017-01-16 08:18:33 -05:00
|
|
|
repeated v2ray.core.transport.internet.TransportConfig transport_settings = 1;
|
2018-09-07 08:50:25 -04:00
|
|
|
}
|