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