1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 10:56:07 -04:00
v2fly/proxy/blackhole/config.proto

24 lines
634 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-12-22 18:24:28 -05:00
option csharp_namespace = "V2Ray.Core.Proxy.Blackhole";
option go_package = "github.com/v2fly/v2ray-core/v5/proxy/blackhole";
2016-09-26 09:14:16 -04:00
option java_package = "com.v2ray.core.proxy.blackhole";
2017-02-03 17:15:10 -05:00
option java_multiple_files = true;
2016-09-22 06:01:36 -04:00
import "google/protobuf/any.proto";
2021-09-05 11:32:11 -04:00
import "common/protoext/extensions.proto";
2016-09-22 06:01:36 -04:00
message NoneResponse {}
2016-09-22 06:01:36 -04:00
message HTTPResponse {}
2016-09-22 06:01:36 -04:00
message Config {
2021-06-19 09:36:54 -04:00
google.protobuf.Any response = 1;
2016-09-22 06:01:36 -04:00
}
2021-09-05 11:32:11 -04:00
message SimplifiedConfig {
option (v2ray.core.common.protoext.message_opt).type = "outbound";
option (v2ray.core.common.protoext.message_opt).short_name = "blackhole";
}