mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
350 B
28 lines
350 B
syntax = "proto3";
|
|
|
|
package com.v2ray.core.proxy.blackhole;
|
|
option go_package = "blackhole";
|
|
|
|
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;
|
|
}
|