You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

FakeDnsObject.cs 375 B

123456789101112131415
  1. namespace Shadowsocks.Interop.V2Ray
  2. {
  3. public class FakeDnsObject
  4. {
  5. /// <summary>
  6. /// Gets or sets the IP pool CIDR.
  7. /// </summary>
  8. public string IpPool { get; set; } = "198.18.0.0/15";
  9. /// <summary>
  10. /// Gets or sets the IP pool size.
  11. /// </summary>
  12. public long PoolSize { get; set; } = 65535L;
  13. }
  14. }