From cfae8c63990fc4c16bef3ec247584068f6e9d883 Mon Sep 17 00:00:00 2001 From: Evengard Date: Mon, 21 Aug 2017 17:33:07 +0300 Subject: [PATCH] Disable skipping of loopback interfaces This fixes the absence of VPN tunnel interfaces under Windows and works around the QTBUG-32349 Fixes #7291 --- src/gui/advancedsettings.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/advancedsettings.cpp b/src/gui/advancedsettings.cpp index 51cca21d0..67709ded7 100644 --- a/src/gui/advancedsettings.cpp +++ b/src/gui/advancedsettings.cpp @@ -325,7 +325,6 @@ void AdvancedSettings::loadAdvancedSettings() // https://github.com/qbittorrent/qBittorrent/pull/5135 if (iface.addressEntries().isEmpty()) continue; - if (iface.flags() & QNetworkInterface::IsLoopBack) continue; combo_iface.addItem(iface.humanReadableName(), iface.name()); if (!current_iface.isEmpty() && (iface.name() == current_iface)) { combo_iface.setCurrentIndex(i);