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