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";
|
2016-09-30 10:53:40 -04:00
|
|
|
option go_package = "transport";
|
|
|
|
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
|
|
|
|
2016-10-02 17:43:58 -04:00
|
|
|
import "v2ray.com/core/transport/internet/config.proto";
|
|
|
|
|
2016-10-18 09:31:39 -04:00
|
|
|
// Global transport settings. This affects all type of connections that go through V2Ray.
|
2016-09-30 10:53:40 -04:00
|
|
|
message Config {
|
2017-01-16 08:18:33 -05:00
|
|
|
repeated v2ray.core.transport.internet.TransportConfig transport_settings = 1;
|
2016-09-30 10:53:40 -04:00
|
|
|
}
|