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

43 lines
1.0 KiB
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";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-10-02 21:43:58 +00:00
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;
2018-03-01 12:16:52 +00:00
HTTP = 4;
}
message TransportConfig {
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
2018-01-04 10:24:17 +00:00
// Specific settings. Must be of the transports.
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 TransportConfig 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
2018-01-04 10:24:17 +00:00
// Settings for transport security. For now the only choice is TLS.
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;
}