mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-21 17:46:58 -05:00
30 lines
447 B
Protocol Buffer
30 lines
447 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package v2ray.core.proxy.blackhole;
|
|
option go_package = "blackhole";
|
|
option java_package = "com.v2ray.core.proxy.blackhole";
|
|
option java_outer_classname = "ConfigProto";
|
|
|
|
import "google/protobuf/any.proto";
|
|
|
|
message NoneResponse {
|
|
|
|
}
|
|
|
|
message HTTPResponse {
|
|
|
|
}
|
|
|
|
message Response {
|
|
enum Type {
|
|
None = 0;
|
|
HTTP = 1;
|
|
}
|
|
Type type = 1;
|
|
google.protobuf.Any settings = 2;
|
|
}
|
|
|
|
message Config {
|
|
Response response = 1;
|
|
}
|