1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-03 06:30:42 +00:00
v2fly/transport/internet/config.proto

40 lines
896 B
Protocol Buffer
Raw Normal View History

2016-10-02 21:43:58 +00:00
syntax = "proto3";
package v2ray.core.transport.internet;
2016-12-22 23:24:28 +00:00
option csharp_namespace = "V2Ray.Core.Transport.Internet";
2016-10-02 21:43:58 +00:00
option go_package = "internet";
option java_package = "com.v2ray.core.transport.internet";
2016-12-15 10:51:09 +00:00
import "v2ray.com/core/common/serial/typed_message.proto";
2016-10-02 21:43:58 +00:00
enum TransportProtocol {
TCP = 0;
UDP = 1;
MKCP = 2;
WebSocket = 3;
}
message TransportSettings {
2016-10-17 22:09:49 +00:00
// Type of network that this settings supports.
TransportProtocol protocol = 1;
2016-10-17 22:09:49 +00:00
// Specific settings.
2016-12-15 10:51:09 +00:00
v2ray.core.common.serial.TypedMessage settings = 2;
2016-10-02 21:43:58 +00:00
}
message StreamConfig {
2016-10-17 22:09:49 +00:00
// Effective network.
TransportProtocol protocol = 1;
2016-10-17 22:09:49 +00:00
repeated TransportSettings transport_settings = 2;
2016-10-17 22:09:49 +00:00
// Type of security. Must be a message name of the settings proto.
2016-10-16 12:22:21 +00:00
string security_type = 3;
2016-10-17 22:09:49 +00:00
2016-12-15 10:51:09 +00:00
repeated v2ray.core.common.serial.TypedMessage security_settings = 4;
2016-11-10 22:41:28 +00:00
}
message ProxyConfig {
string tag = 1;
}