mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 17:27:23 -05:00
28 lines
350 B
Protocol Buffer
28 lines
350 B
Protocol Buffer
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;
|
|
}
|