1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 22:45:24 +00:00
v2fly/transport/config.proto

17 lines
561 B
Protocol Buffer
Raw Normal View History

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";
2021-02-16 20:31:50 +00:00
option go_package = "github.com/v2fly/v2ray-core/v4/transport";
2016-09-30 14:53:40 +00:00
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
import "transport/internet/config.proto";
2016-10-02 21:43:58 +00:00
// Global transport settings. This affects all type of connections that go
// through V2Ray. Deprecated. Use each settings in StreamConfig.
2016-09-30 14:53:40 +00:00
message Config {
option deprecated = true;
repeated v2ray.core.transport.internet.TransportConfig transport_settings = 1;
2018-09-07 12:50:25 +00:00
}