2019-02-06 10:21:04 +01:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package v2ray.core.proxy.dns;
|
|
|
|
option csharp_namespace = "V2Ray.Core.Proxy.Dns";
|
2021-02-17 04:31:50 +08:00
|
|
|
option go_package = "github.com/v2fly/v2ray-core/v4/proxy/dns";
|
2019-02-06 10:21:04 +01:00
|
|
|
option java_package = "com.v2ray.core.proxy.dns";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
|
2020-08-24 20:10:26 +08:00
|
|
|
import "common/net/destination.proto";
|
2019-02-12 22:34:43 +01:00
|
|
|
|
2019-02-06 10:21:04 +01:00
|
|
|
message Config {
|
2020-10-05 08:36:40 +08:00
|
|
|
// Server is the DNS server address. If specified, this address overrides the
|
|
|
|
// original one.
|
2019-02-12 22:34:43 +01:00
|
|
|
v2ray.core.common.net.Endpoint server = 1;
|
2019-02-06 10:21:04 +01:00
|
|
|
}
|