From e32a19520b0f466f8e58116e6d81c096dbcd7a01 Mon Sep 17 00:00:00 2001
From: Mary <me@thog.eu>
Date: Tue, 11 Jan 2022 08:58:57 +0100
Subject: [PATCH] sfdnsres: Block communication attempt with NPLN servers
 (#2990)

Seen on Monster Hunter Rise.
---
 Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs b/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs
index 92c92f663d..ddfe232c6a 100644
--- a/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs
+++ b/Ryujinx.HLE/HOS/Services/Sockets/Sfdnsres/Proxy/DnsBlacklist.cs
@@ -9,6 +9,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Sfdnsres.Proxy
         private static readonly Regex[] BlockedHosts = new Regex[]
         {
             new Regex(@"^(.*)\-lp1\.(n|s)\.n\.srv\.nintendo\.net$", RegexOpts),
+            new Regex(@"^(.*)\-lp1\.lp1\.t\.npln\.srv\.nintendo\.net$", RegexOpts),
             new Regex(@"^(.*)\-lp1\.(znc|p)\.srv\.nintendo\.net$", RegexOpts),
             new Regex(@"^(.*)\-sb\-api\.accounts\.nintendo\.com$", RegexOpts),
             new Regex(@"^(.*)\-sb\.accounts\.nintendo\.com$", RegexOpts),