mirror of https://github.com/2dust/v2rayN
Add fakeip for sing-box
parent
4930646e05
commit
e4c65deda8
|
@ -22,6 +22,13 @@
|
||||||
{
|
{
|
||||||
public List<Server4Sbox> servers { get; set; }
|
public List<Server4Sbox> servers { get; set; }
|
||||||
public List<Rule4Sbox> rules { get; set; }
|
public List<Rule4Sbox> rules { get; set; }
|
||||||
|
public string? final { get; set; }
|
||||||
|
public string? strategy { get; set; }
|
||||||
|
public bool? disable_cache { get; set; }
|
||||||
|
public bool? disable_expire { get; set; }
|
||||||
|
public bool? independent_cache { get; set; }
|
||||||
|
public bool? reverse_mapping { get; set; }
|
||||||
|
public Fakeip4Sbox? fakeip { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Route4Sbox
|
public class Route4Sbox
|
||||||
|
@ -195,4 +202,11 @@
|
||||||
public List<string>? outbounds { get; set; }
|
public List<string>? outbounds { get; set; }
|
||||||
public List<string>? users { get; set; }
|
public List<string>? users { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class Fakeip4Sbox
|
||||||
|
{
|
||||||
|
public bool enabled { get; set; }
|
||||||
|
public string inet4_range { get; set; }
|
||||||
|
public string inet6_range { get; set; }
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue