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";
|
|
|
|
|
2018-08-24 15:51:03 -04:00
|
|
|
message NameServer {
|
|
|
|
v2ray.core.common.net.Endpoint address = 1;
|
|
|
|
|
|
|
|
message PriorityDomain {
|
|
|
|
DomainMatchingType type = 1;
|
|
|
|
string domain = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
repeated PriorityDomain prioritized_domain = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum DomainMatchingType {
|
|
|
|
Full = 0;
|
|
|
|
Subdomain = 1;
|
|
|
|
Keyword = 2;
|
2018-09-19 10:10:42 -04:00
|
|
|
Regex = 3;
|
2018-08-24 15:51:03 -04:00
|
|
|
}
|
|
|
|
|
2016-09-20 10:05:35 -04:00
|
|
|
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.
|
2018-08-24 15:51:03 -04:00
|
|
|
repeated v2ray.core.common.net.Endpoint NameServers = 1 [deprecated = true];
|
|
|
|
|
|
|
|
// NameServer list used by this DNS client.
|
|
|
|
repeated NameServer name_server = 5;
|
2016-10-18 04:31:39 -04:00
|
|
|
|
|
|
|
// Static hosts. Domain to IP.
|
2018-06-26 16:34:05 -04:00
|
|
|
// Deprecated. Use static_hosts.
|
|
|
|
map<string, v2ray.core.common.net.IPOrDomain> Hosts = 2 [deprecated = true];
|
2018-06-26 11:14:51 -04:00
|
|
|
|
2018-06-26 17:23:59 -04:00
|
|
|
// Client IP for EDNS client subnet. Must be 4 bytes (IPv4) or 16 bytes (IPv6).
|
|
|
|
bytes client_ip = 3;
|
2018-06-26 16:34:05 -04:00
|
|
|
|
|
|
|
message HostMapping {
|
2018-08-24 15:51:03 -04:00
|
|
|
DomainMatchingType type = 1;
|
2018-06-26 16:34:05 -04:00
|
|
|
string domain = 2;
|
2019-01-30 15:04:29 -05:00
|
|
|
|
2018-06-26 16:34:05 -04:00
|
|
|
repeated bytes ip = 3;
|
2019-01-30 15:04:29 -05:00
|
|
|
|
|
|
|
// ProxiedDomain indicates the mapped domain has the same IP address on this domain. V2Ray will use this domain for IP queries.
|
|
|
|
// This field is only effective if ip is empty.
|
|
|
|
string proxied_domain = 4;
|
2018-06-26 16:34:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
repeated HostMapping static_hosts = 4;
|
2019-01-16 14:32:41 -05:00
|
|
|
|
|
|
|
// Tag is the inbound tag of DNS client.
|
|
|
|
string tag = 6;
|
2016-09-20 10:05:35 -04:00
|
|
|
}
|