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

90 lines
2.3 KiB
Protocol Buffer
Raw Normal View History

2016-12-16 22:02:11 +00:00
syntax = "proto3";
package v2ray.core.app.proxyman;
2017-01-08 09:10:37 +00:00
option csharp_namespace = "V2Ray.Core.App.Proxyman";
2016-12-16 22:02:11 +00:00
option go_package = "proxyman";
option java_package = "com.v2ray.core.app.proxyman";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-12-16 22:02:11 +00:00
2017-01-14 23:17:06 +00:00
import "v2ray.com/core/common/net/address.proto";
import "v2ray.com/core/common/net/port.proto";
import "v2ray.com/core/transport/internet/config.proto";
2018-02-12 06:47:23 +00:00
import "v2ray.com/core/common/serial/typed_message.proto";
2017-01-14 23:17:06 +00:00
2017-04-02 12:24:10 +00:00
message InboundConfig {
}
2017-01-14 23:17:06 +00:00
message AllocationStrategy {
enum Type {
// Always allocate all connection handlers.
Always = 0;
// Randomly allocate specific range of handlers.
Random = 1;
// External. Not supported yet.
External = 2;
}
Type type = 1;
message AllocationStrategyConcurrency {
uint32 value = 1;
}
// Number of handlers (ports) running in parallel.
// Default value is 3 if unset.
AllocationStrategyConcurrency concurrency = 2;
message AllocationStrategyRefresh {
uint32 value = 1;
}
// Number of minutes before a handler is regenerated.
// Default value is 5 if unset.
AllocationStrategyRefresh refresh = 3;
}
enum KnownProtocols {
HTTP = 0;
TLS = 1;
}
message ReceiverConfig {
2018-04-09 15:09:24 +00:00
// PortRange specifies the ports which the Receiver should listen on.
2017-01-14 23:17:06 +00:00
v2ray.core.common.net.PortRange port_range = 1;
2018-04-09 15:09:24 +00:00
// Listen specifies the IP address that the Receiver should listen on.
2017-01-14 23:17:06 +00:00
v2ray.core.common.net.IPOrDomain listen = 2;
AllocationStrategy allocation_strategy = 3;
v2ray.core.transport.internet.StreamConfig stream_settings = 4;
bool receive_original_destination = 5;
reserved 6;
repeated KnownProtocols domain_override = 7;
2017-01-14 23:17:06 +00:00
}
message InboundHandlerConfig {
string tag = 1;
v2ray.core.common.serial.TypedMessage receiver_settings = 2;
v2ray.core.common.serial.TypedMessage proxy_settings = 3;
}
2016-12-16 22:02:11 +00:00
message OutboundConfig {
2017-01-14 23:17:06 +00:00
}
message SenderConfig {
2017-01-14 23:17:06 +00:00
// Send traffic through the given IP. Only IP is allowed.
v2ray.core.common.net.IPOrDomain via = 1;
v2ray.core.transport.internet.StreamConfig stream_settings = 2;
2017-01-14 23:48:37 +00:00
v2ray.core.transport.internet.ProxyConfig proxy_settings = 3;
2017-04-02 12:24:10 +00:00
MultiplexingConfig multiplex_settings = 4;
2017-01-14 23:17:06 +00:00
}
2017-02-03 22:09:24 +00:00
message MultiplexingConfig {
2017-04-12 08:40:21 +00:00
// Whether or not Mux is enabled.
2017-02-03 22:09:24 +00:00
bool enabled = 1;
2017-04-12 08:40:21 +00:00
// Max number of concurrent connections that one Mux connection can handle.
uint32 concurrency = 2;
2017-02-03 22:09:24 +00:00
}