1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-11 06:24:21 -04:00
v2fly/proxy/blackhole/config.proto

19 lines
368 B
Protocol Buffer
Raw Normal View History

2016-09-22 06:01:36 -04:00
syntax = "proto3";
2016-09-26 09:14:16 -04:00
package v2ray.core.proxy.blackhole;
2016-09-22 06:01:36 -04:00
option go_package = "blackhole";
2016-09-26 09:14:16 -04:00
option java_package = "com.v2ray.core.proxy.blackhole";
option java_outer_classname = "ConfigProto";
2016-09-22 06:01:36 -04:00
2016-10-15 18:23:27 -04:00
import "v2ray.com/core/common/loader/type.proto";
2016-09-22 06:01:36 -04:00
message NoneResponse {
}
message HTTPResponse {
}
message Config {
2016-10-15 18:23:27 -04:00
v2ray.core.common.loader.TypedSettings response = 1;
2016-09-22 06:01:36 -04:00
}