Files
Xray-core/proxy/dns/config.proto
T

17 lines
449 B
Protocol Buffer
Raw Normal View History

2020-11-25 19:01:53 +08:00
syntax = "proto3";
package xray.proxy.dns;
option csharp_namespace = "Xray.Proxy.Dns";
2020-12-04 09:36:16 +08:00
option go_package = "github.com/xtls/xray-core/proxy/dns";
2020-11-25 19:01:53 +08:00
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;
2021-10-16 21:02:51 +08:00
uint32 user_level = 2;
2020-11-25 19:01:53 +08:00
}