1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-15 00:18:16 -04:00
v2fly/config.proto

60 lines
2.1 KiB
Protocol Buffer
Raw Normal View History

2016-10-12 12:43:55 -04:00
syntax = "proto3";
package v2ray.core;
2016-12-22 18:24:28 -05:00
option csharp_namespace = "V2Ray.Core";
2016-10-12 12:43:55 -04:00
option go_package = "core";
option java_package = "com.v2ray.core";
2017-02-03 17:15:10 -05:00
option java_multiple_files = true;
2016-10-12 12:43:55 -04:00
2016-12-15 05:51:09 -05:00
import "v2ray.com/core/common/serial/typed_message.proto";
2016-10-14 16:21:45 -04:00
import "v2ray.com/core/transport/config.proto";
2016-10-12 12:43:55 -04:00
2016-10-17 18:09:49 -04:00
// Configuration serialization format.
2016-10-14 17:41:41 -04:00
enum ConfigFormat {
Protobuf = 0;
JSON = 1;
}
2018-01-04 05:09:23 -05:00
// Master config of V2Ray. V2Ray takes this config as input and functions accordingly.
2016-10-14 16:21:45 -04:00
message Config {
2016-10-17 18:09:49 -04:00
// Inbound handler configurations. Must have at least one item.
repeated InboundHandlerConfig inbound = 1;
2016-10-17 18:09:49 -04:00
// Outbound handler configurations. Must have at least one item. The first item is used as default for routing.
repeated OutboundHandlerConfig outbound = 2;
2017-02-01 15:35:40 -05:00
reserved 3;
2016-10-17 18:09:49 -04:00
// App configuration. Must be one in the app directory.
2016-12-15 05:51:09 -05:00
repeated v2ray.core.common.serial.TypedMessage app = 4;
2017-02-10 10:25:54 -05:00
// Transport settings.
2016-10-16 10:04:30 -04:00
v2ray.core.transport.Config transport = 5;
2017-07-24 10:39:32 -04:00
// Configuration for extensions. The config may not work if corresponding extension is not loaded into V2Ray.
// V2Ray will ignore such config during initialization.
repeated v2ray.core.common.serial.TypedMessage extension = 6;
}
message InboundHandlerConfig {
// Tag of the inbound handler.
string tag = 1;
// Settings for how this inbound proxy is handled. Must be ReceiverConfig above.
v2ray.core.common.serial.TypedMessage receiver_settings = 2;
// Settings for inbound proxy. Must be one of the inbound proxies.
v2ray.core.common.serial.TypedMessage proxy_settings = 3;
}
message OutboundHandlerConfig {
// Tag of this outbound handler.
string tag = 1;
// Settings for how to dial connection for this outbound handler. Must be SenderConfig above.
v2ray.core.common.serial.TypedMessage sender_settings = 2;
// Settings for this outbound proxy. Must be one of the outbound proxies.
v2ray.core.common.serial.TypedMessage proxy_settings = 3;
// If not zero, this outbound will be expired in seconds. Not used for now.
int64 expire = 4;
// Comment of this outbound handler. Not used for now.
string comment = 5;
}