1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-03 06:30:42 +00:00
v2fly/proxy/dns/config.proto

16 lines
453 B
Protocol Buffer
Raw Normal View History

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