mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
18 lines
413 B
Protocol Buffer
18 lines
413 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;
|
|
|
|
import "common/serial/typed_message.proto";
|
|
|
|
message NoneResponse {}
|
|
|
|
message HTTPResponse {}
|
|
|
|
message Config {
|
|
xray.common.serial.TypedMessage response = 1;
|
|
}
|