From 1e1c4d159b068940544b6982cf377fc6d42dc4f2 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 25 Jul 2016 10:28:20 -0400 Subject: [PATCH] do reload --- ClientContext.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ClientContext.cpp b/ClientContext.cpp index 788e6a46..be059ae3 100644 --- a/ClientContext.cpp +++ b/ClientContext.cpp @@ -202,11 +202,8 @@ namespace client void ClientContext::ReloadConfig () { - /* - std::string config; i2p::config::GetOption("conf", config); - i2p::config::ParseConfig(config); - */ - //I don't think we can just reload the main config without making a mess of things, so holding off for now. + std::string config; i2p::config::GetOption("conf", config); + i2p::config::ParseConfig(config); Stop(); Start(); }