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.
18 lines
510 B
18 lines
510 B
syntax = "proto3"; |
|
|
|
package xray.proxy.dns; |
|
option csharp_namespace = "Xray.Proxy.Dns"; |
|
option go_package = "github.com/xtls/xray-core/proxy/dns"; |
|
option java_package = "com.xray.proxy.dns"; |
|
option java_multiple_files = true; |
|
|
|
import "common/net/destination.proto"; |
|
|
|
message Config { |
|
// Server is the DNS server address. If specified, this address overrides the |
|
// original one. |
|
xray.common.net.Endpoint server = 1; |
|
uint32 user_level = 2; |
|
string non_IP_query = 3; |
|
repeated int32 block_types = 4; |
|
}
|
|
|