mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
16 lines
520 B
Protocol Buffer
16 lines
520 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package v2ray.core.app.dns.fakedns;
|
|
option csharp_namespace = "V2Ray.Core.App.Dns.Fakedns";
|
|
option go_package = "github.com/v2fly/v2ray-core/v4/app/dns/fakedns";
|
|
option java_package = "com.v2ray.core.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;
|
|
} |