1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-22 04:14:26 -04:00
v2fly/proxy/dns/config.proto

15 lines
432 B
Protocol Buffer
Raw Normal View History

2019-02-06 04:21:04 -05:00
syntax = "proto3";
package v2ray.core.proxy.dns;
option csharp_namespace = "V2Ray.Core.Proxy.Dns";
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;
import "common/net/destination.proto";
2019-02-12 16:34:43 -05:00
2019-02-06 04:21:04 -05:00
message Config {
2019-02-12 16:34:43 -05: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 04:21:04 -05:00
}