1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-04 13:05:24 +00:00
v2fly/app/web/config.proto
2017-02-03 23:15:10 +01:00

30 lines
594 B
Protocol Buffer

syntax = "proto3";
package v2ray.core.app.web;
option csharp_namespace = "V2Ray.Core.App.Web";
option go_package = "web";
option java_package = "com.v2ray.core.app.web";
option java_multiple_files = true;
import "v2ray.com/core/common/serial/typed_message.proto";
message FileServer {
message Entry {
oneof FileOrDir {
string File = 1;
string Directory = 2;
}
string path = 3;
}
repeated Entry entry = 1;
}
message Server {
repeated string domain = 1;
v2ray.core.common.serial.TypedMessage settings = 2;
}
message Config {
repeated Server server = 1;
}