mirror of
https://github.com/2dust/v2rayN.git
synced 2026-02-28 05:03:02 +00:00
Fix udphop (#8843)
This commit is contained in:
parent
2f35e7a99c
commit
68ea10158a
2 changed files with 2 additions and 2 deletions
|
|
@ -472,7 +472,7 @@ public class HysteriaSettings4Ray
|
||||||
|
|
||||||
public class HysteriaUdpHop4Ray
|
public class HysteriaUdpHop4Ray
|
||||||
{
|
{
|
||||||
public string? ports { get; set; }
|
public string? port { get; set; }
|
||||||
public string? interval { get; set; }
|
public string? interval { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -602,7 +602,7 @@ public partial class CoreConfigV2rayService
|
||||||
{
|
{
|
||||||
udpHop = new HysteriaUdpHop4Ray
|
udpHop = new HysteriaUdpHop4Ray
|
||||||
{
|
{
|
||||||
ports = ports.Replace(':', '-'),
|
port = ports.Replace(':', '-'),
|
||||||
interval = hopInterval,
|
interval = hopInterval,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue