1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-21 04:34:15 -04:00
v2fly/app/dispatcher/config.proto

17 lines
328 B
Protocol Buffer
Raw Normal View History

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