* correct shutdown of httpserver & socksproxy

This commit is contained in:
hagen 2016-02-03 11:30:00 +00:00
parent 0c442622af
commit 62cec2a31c
2 changed files with 17 additions and 11 deletions

View file

@ -210,9 +210,11 @@ namespace i2p
i2p::transport::transports.Stop();
LogPrint(eLogInfo, "Daemon: stopping NetDB");
i2p::data::netdb.Stop();
LogPrint(eLogInfo, "Daemon: stopping HTTP Server");
d.httpServer->Stop();
d.httpServer = nullptr;
if (d.httpServer) {
LogPrint(eLogInfo, "Daemon: stopping HTTP Server");
d.httpServer->Stop();
d.httpServer = nullptr;
}
if (d.m_I2PControlService)
{
LogPrint(eLogInfo, "Daemon: stopping I2PControl");