Increase NAT discovery timeout to 5000ms

1000ms was too fast on some slower networks. It would lead to an early
cancellation before device could be found.
This commit is contained in:
Josh
2025-01-27 21:44:26 -06:00
committed by KeatonTheBot
parent e7dc0f8a63
commit 727ac79ebc
@@ -111,7 +111,7 @@ namespace Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator.LdnRyu.Proxy
public async Task<ushort> NatPunch()
{
NatDiscoverer discoverer = new NatDiscoverer();
CancellationTokenSource cts = new CancellationTokenSource(1000);
CancellationTokenSource cts = new CancellationTokenSource(5000);
NatDevice device;