2016-09-30 14:53:40 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package v2ray.core.transport;
|
2016-12-22 23:24:28 +00:00
|
|
|
option csharp_namespace = "V2Ray.Core.Transport";
|
2016-09-30 14:53:40 +00:00
|
|
|
option go_package = "transport";
|
|
|
|
option java_package = "com.v2ray.core.transport";
|
2017-02-03 22:15:10 +00:00
|
|
|
option java_multiple_files = true;
|
2016-09-30 14:53:40 +00:00
|
|
|
|
2016-10-02 21:43:58 +00:00
|
|
|
import "v2ray.com/core/transport/internet/config.proto";
|
|
|
|
|
2016-10-18 13:31:39 +00:00
|
|
|
// Global transport settings. This affects all type of connections that go through V2Ray.
|
2016-09-30 14:53:40 +00:00
|
|
|
message Config {
|
2017-01-16 13:18:33 +00:00
|
|
|
repeated v2ray.core.transport.internet.TransportConfig transport_settings = 1;
|
2016-09-30 14:53:40 +00:00
|
|
|
}
|