mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
497 B
16 lines
497 B
syntax = "proto3";
|
|
|
|
package xray.app.dns.fakedns;
|
|
option csharp_namespace = "Xray.App.Dns.Fakedns";
|
|
option go_package = "github.com/xtls/xray-core/app/dns/fakedns";
|
|
option java_package = "com.xray.app.dns.fakedns";
|
|
option java_multiple_files = true;
|
|
|
|
message FakeDnsPool{
|
|
string ip_pool = 1; //CIDR of IP pool used as fake DNS IP
|
|
int64 lruSize = 2; //Size of Pool for remembering relationship between domain name and IP address
|
|
}
|
|
|
|
message FakeDnsPoolMulti{
|
|
repeated FakeDnsPool pools = 1;
|
|
} |