1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/app/dns/config.proto

37 lines
1.0 KiB
Protocol Buffer
Raw Normal View History

2016-09-20 14:05:35 +00:00
syntax = "proto3";
2016-09-26 13:14:16 +00:00
package v2ray.core.app.dns;
2016-12-22 23:24:28 +00:00
option csharp_namespace = "V2Ray.Core.App.Dns";
2016-09-20 14:05:35 +00:00
option go_package = "dns";
2016-09-26 13:14:16 +00:00
option java_package = "com.v2ray.core.app.dns";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-09-20 14:05:35 +00:00
import "v2ray.com/core/common/net/address.proto";
import "v2ray.com/core/common/net/destination.proto";
message Config {
2016-10-18 08:31:39 +00: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 16:43:55 +00:00
repeated v2ray.core.common.net.Endpoint NameServers = 1;
2016-10-18 08:31:39 +00:00
// Static hosts. Domain to IP.
// Deprecated. Use static_hosts.
map<string, v2ray.core.common.net.IPOrDomain> Hosts = 2 [deprecated = true];
2018-06-26 15:14:51 +00:00
2018-06-26 21:23:59 +00:00
// Client IP for EDNS client subnet. Must be 4 bytes (IPv4) or 16 bytes (IPv6).
bytes client_ip = 3;
message HostMapping {
enum Type {
Full = 0;
SubDomain = 1;
}
Type type = 1;
string domain = 2;
repeated bytes ip = 3;
}
repeated HostMapping static_hosts = 4;
2016-09-20 14:05:35 +00:00
}