mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-09-15 22:10:26 +00:00
https://github.com/XTLS/Xray-core/pull/6711#issuecomment-5508683394 --------- Co-authored-by: Raaad1on <djilyawhite@gmail.com>
17 lines
370 B
Protocol Buffer
17 lines
370 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.proxy.blackhole;
|
|
option csharp_namespace = "Xray.Proxy.Blackhole";
|
|
option go_package = "github.com/xtls/xray-core/proxy/blackhole";
|
|
option java_package = "com.xray.proxy.blackhole";
|
|
option java_multiple_files = true;
|
|
|
|
message Response {
|
|
string type = 1;
|
|
bytes custom_response_data = 2;
|
|
}
|
|
|
|
message Config {
|
|
Response response = 1;
|
|
}
|