1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-11 02:10:44 +00:00
v2fly/app/dispatcher/config.proto

16 lines
360 B
Protocol Buffer
Raw Permalink Normal View History

2016-12-16 14:39:47 +00:00
syntax = "proto3";
package v2ray.core.app.dispatcher;
2016-12-22 23:24:28 +00:00
option csharp_namespace = "V2Ray.Core.App.Dispatcher";
option go_package = "github.com/v2fly/v2ray-core/v5/app/dispatcher";
2016-12-16 14:39:47 +00:00
option java_package = "com.v2ray.core.app.dispatcher";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-12-16 14:39:47 +00:00
2017-01-08 09:10:37 +00:00
message SessionConfig {
reserved 1;
2017-01-08 09:10:37 +00:00
}
2016-12-16 14:39:47 +00:00
message Config {
2017-01-08 09:10:37 +00:00
SessionConfig settings = 1;
2016-12-23 15:54:15 +00:00
}