1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-20 20:24:15 -04:00
v2fly/app/dns/config.proto

20 lines
666 B
Protocol Buffer
Raw Normal View History

2016-09-20 10:05:35 -04:00
syntax = "proto3";
2016-09-26 09:14:16 -04:00
package v2ray.core.app.dns;
2016-12-22 18:24:28 -05:00
option csharp_namespace = "V2Ray.Core.App.Dns";
2016-09-20 10:05:35 -04:00
option go_package = "dns";
2016-09-26 09:14:16 -04:00
option java_package = "com.v2ray.core.app.dns";
2017-02-03 17:15:10 -05:00
option java_multiple_files = true;
2016-09-20 10:05:35 -04:00
import "v2ray.com/core/common/net/address.proto";
import "v2ray.com/core/common/net/destination.proto";
message Config {
2016-10-18 04:31:39 -04:00
// Nameservers used by this DNS. Only traditional UDP servers are support at the moment.
// A special value 'localhost' as a domain address can be set to use DNS on local system.
2016-10-12 12:43:55 -04:00
repeated v2ray.core.common.net.Endpoint NameServers = 1;
2016-10-18 04:31:39 -04:00
// Static hosts. Domain to IP.
2016-10-12 12:43:55 -04:00
map<string, v2ray.core.common.net.IPOrDomain> Hosts = 2;
2016-09-20 10:05:35 -04:00
}