mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
19 lines
368 B
Protocol Buffer
19 lines
368 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 "v2ray.com/core/common/loader/type.proto";
|
|
|
|
message NoneResponse {
|
|
}
|
|
|
|
message HTTPResponse {
|
|
}
|
|
|
|
message Config {
|
|
v2ray.core.common.loader.TypedSettings response = 1;
|
|
}
|