From c131fc8c86dbc00fccd8e275d909b534c6e97a6a Mon Sep 17 00:00:00 2001 From: chertov Date: Wed, 23 Apr 2014 01:59:29 +0400 Subject: [PATCH] Print data path on the statistics page --- HTTPServer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/HTTPServer.cpp b/HTTPServer.cpp index 961acbb1..ac23ebb3 100644 --- a/HTTPServer.cpp +++ b/HTTPServer.cpp @@ -238,6 +238,7 @@ namespace util void HTTPConnection::FillContent (std::stringstream& s) { + s << "Data path: " << i2p::util::filesystem::GetDataDir().string() << "
" << "
"; s << "Our external address:" << "
" << "
"; for (auto& address : i2p::context.GetRouterInfo().GetAddresses()) {