From adb3cce28cac923b383a3d1ccbf8a15c9af72632 Mon Sep 17 00:00:00 2001 From: dr|z3d Date: Thu, 19 Aug 2021 23:51:08 +0000 Subject: [PATCH] Console: client_tunnels -> local_tunnels --- daemon/HTTPServer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daemon/HTTPServer.cpp b/daemon/HTTPServer.cpp index 4d81002d..fd57dc75 100644 --- a/daemon/HTTPServer.cpp +++ b/daemon/HTTPServer.cpp @@ -342,7 +342,7 @@ namespace http { } const char HTTP_PAGE_TUNNEL_SUMMARY[] = "tunnel_summary"; - const char HTTP_PAGE_CLIENT_TUNNELS[] = "client_tunnels"; + const char HTTP_PAGE_LOCAL_TUNNELS[] = "local_tunnels"; const char HTTP_PAGE_TRANSIT_TUNNELS[] = "transit_tunnels"; const char HTTP_PAGE_TRANSPORTS[] = "transports"; const char HTTP_PAGE_LOCAL_DESTINATIONS[] = "local_destinations"; @@ -1208,7 +1208,7 @@ namespace http { // s << "" << tr("Exploratory") << "------" // << "View\r\n" s << "" << tr("Local") << "------" - << "View\r\n" + << "View\r\n" // << "" << tr("Service") << "count in/outView\r\n" << ""; ShowI2PTunnels (s); @@ -1919,7 +1919,7 @@ namespace http { ShowSAMSessions (s); } else if (page == HTTP_PAGE_SAM_SESSION) { ShowSAMSession (s, params["sam_id"]); - } else if (page == HTTP_PAGE_CLIENT_TUNNELS) { + } else if (page == HTTP_PAGE_LOCAL_TUNNELS) { ShowTunnels (s); } else if (page == HTTP_PAGE_LEASESETS) { ShowLeasesSets(s);