From 4e1e47d9e5889e3351e6087251b3d9e01dc40892 Mon Sep 17 00:00:00 2001 From: orignal Date: Thu, 19 Mar 2015 11:52:46 -0400 Subject: [PATCH] always use 'O' class for high-bandwidth --- RouterInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RouterInfo.cpp b/RouterInfo.cpp index fb12ff9f..66eca3b4 100644 --- a/RouterInfo.cpp +++ b/RouterInfo.cpp @@ -282,7 +282,7 @@ namespace data caps += CAPS_FLAG_FLOODFILL; // floodfill } else - caps += (m_Caps & eHighBandwidth) ? CAPS_FLAG_HIGH_BANDWIDTH1 : CAPS_FLAG_LOW_BANDWIDTH2; // bandwidth + caps += (m_Caps & eHighBandwidth) ? CAPS_FLAG_HIGH_BANDWIDTH3 : CAPS_FLAG_LOW_BANDWIDTH2; // bandwidth if (m_Caps & eHidden) caps += CAPS_FLAG_HIDDEN; // hidden if (m_Caps & eReachable) caps += CAPS_FLAG_REACHABLE; // reachable if (m_Caps & eUnreachable) caps += CAPS_FLAG_UNREACHABLE; // unreachable