1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-07 22:04:30 -04:00
v2fly/transport/config.proto

14 lines
466 B
Protocol Buffer
Raw Normal View History

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 {
repeated v2ray.core.transport.internet.TransportConfig transport_settings = 1;
2016-09-30 10:53:40 -04:00
}