fakedns.proto 434 B

123456789101112
  1. syntax = "proto3";
  2. package xray.app.dns.fakedns;
  3. option csharp_namespace = "Xray.App.Dns.Fakedns";
  4. option go_package = "github.com/xtls/xray-core/app/dns/fakedns";
  5. option java_package = "com.xray.app.dns.fakedns";
  6. option java_multiple_files = true;
  7. message FakeDnsPool{
  8. string ip_pool = 1; //CIDR of IP pool used as fake DNS IP
  9. int64 lruSize = 2; //Size of Pool for remembering relationship between domain name and IP address
  10. }