Skip to content
Snippets Groups Projects
Unverified Commit 31de0bf8 authored by Josh's avatar Josh Committed by GitHub
Browse files

Increase NAT discovery timeout to 5000ms (#589)

1000ms was too fast on some slower networks. It would lead to an early
cancellation before device could be found.
parent f3942968
No related branches found
Tags Canary-1.2.410
No related merge requests found
......@@ -113,7 +113,7 @@ namespace Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator.LdnRyu.Proxy
public async Task<ushort> NatPunch()
{
NatDiscoverer discoverer = new();
CancellationTokenSource cts = new(1000);
CancellationTokenSource cts = new(5000);
NatDevice device;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment