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

24 lines
634 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";
option go_package = "github.com/v2fly/v2ray-core/v5/proxy/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
import "google/protobuf/any.proto";
2021-09-05 23:32:11 +08:00
import "common/protoext/extensions.proto";
2016-09-22 12:01:36 +02:00
message NoneResponse {}
2016-09-22 12:01:36 +02:00
message HTTPResponse {}
2016-09-22 12:01:36 +02:00
message Config {
2021-06-19 14:36:54 +01:00
google.protobuf.Any response = 1;
2016-09-22 12:01:36 +02:00
}
2021-09-05 23:32:11 +08:00
message SimplifiedConfig {
option (v2ray.core.common.protoext.message_opt).type = "outbound";
option (v2ray.core.common.protoext.message_opt).short_name = "blackhole";
}