1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/proxy/blackhole/config.proto

20 lines
422 B
Protocol Buffer
Raw Normal View History

2016-09-22 12:01:36 +02:00
syntax = "proto3";
2016-09-26 15:14:16 +02:00
package v2ray.core.proxy.blackhole;
2016-12-23 00:24:28 +01:00
option csharp_namespace = "V2Ray.Core.Proxy.Blackhole";
2016-09-22 12:01:36 +02:00
option go_package = "blackhole";
2016-09-26 15:14:16 +02:00
option java_package = "com.v2ray.core.proxy.blackhole";
2017-02-03 23:15:10 +01:00
option java_multiple_files = true;
2016-09-22 12:01:36 +02:00
2016-12-15 11:51:09 +01:00
import "v2ray.com/core/common/serial/typed_message.proto";
2016-09-22 12:01:36 +02:00
message NoneResponse {
}
message HTTPResponse {
}
message Config {
2016-12-15 11:51:09 +01:00
v2ray.core.common.serial.TypedMessage response = 1;
2016-09-22 12:01:36 +02:00
}