mirror of https://github.com/XTLS/Xray-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.
17 lines
413 B
17 lines
413 B
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; |
|
}
|
|
|