mirror of
https://github.com/KeatonTheBot/Ryujinx.git
synced 2026-03-11 22:15:35 +00:00
Increase NAT discovery timeout to 5000ms
Some checks failed
Release job / Create tag (push) Has been cancelled
Release job / Release for linux-arm64 (push) Has been cancelled
Release job / Release for linux-x64 (push) Has been cancelled
Release job / Release for win-x64 (push) Has been cancelled
Release job / Release MacOS universal (push) Has been cancelled
Release job / flatpak_release (push) Has been cancelled
Some checks failed
Release job / Create tag (push) Has been cancelled
Release job / Release for linux-arm64 (push) Has been cancelled
Release job / Release for linux-x64 (push) Has been cancelled
Release job / Release for win-x64 (push) Has been cancelled
Release job / Release MacOS universal (push) Has been cancelled
Release job / flatpak_release (push) Has been cancelled
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:
parent
e7dc0f8a63
commit
727ac79ebc
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue