mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user