|
|
@ -15,11 +15,7 @@ |
|
|
|
#include "Streaming.h" |
|
|
|
#include "Streaming.h" |
|
|
|
#include "Destination.h" |
|
|
|
#include "Destination.h" |
|
|
|
#include "HTTPServer.h" |
|
|
|
#include "HTTPServer.h" |
|
|
|
#include "HTTPProxy.h" |
|
|
|
|
|
|
|
#include "SOCKS.h" |
|
|
|
|
|
|
|
#include "ClientContext.h" |
|
|
|
#include "ClientContext.h" |
|
|
|
#include "I2PTunnel.h" |
|
|
|
|
|
|
|
#include "SAM.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace i2p |
|
|
|
namespace i2p |
|
|
|
{ |
|
|
|
{ |
|
|
@ -28,24 +24,14 @@ namespace i2p |
|
|
|
class Daemon_Singleton::Daemon_Singleton_Private |
|
|
|
class Daemon_Singleton::Daemon_Singleton_Private |
|
|
|
{ |
|
|
|
{ |
|
|
|
public: |
|
|
|
public: |
|
|
|
Daemon_Singleton_Private() : httpServer(nullptr), httpProxy(nullptr), |
|
|
|
Daemon_Singleton_Private() : httpServer(nullptr) |
|
|
|
socksProxy(nullptr), ircTunnel(nullptr), serverTunnel (nullptr), |
|
|
|
{}; |
|
|
|
samBridge (nullptr) { }; |
|
|
|
~Daemon_Singleton_Private() |
|
|
|
~Daemon_Singleton_Private() { |
|
|
|
{ |
|
|
|
delete httpServer; |
|
|
|
delete httpServer; |
|
|
|
delete httpProxy; |
|
|
|
|
|
|
|
delete socksProxy; |
|
|
|
|
|
|
|
delete ircTunnel; |
|
|
|
|
|
|
|
delete serverTunnel; |
|
|
|
|
|
|
|
delete samBridge; |
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
i2p::util::HTTPServer *httpServer; |
|
|
|
i2p::util::HTTPServer *httpServer; |
|
|
|
i2p::proxy::HTTPProxy *httpProxy; |
|
|
|
|
|
|
|
i2p::proxy::SOCKSProxy *socksProxy; |
|
|
|
|
|
|
|
i2p::stream::I2PClientTunnel * ircTunnel; |
|
|
|
|
|
|
|
i2p::stream::I2PServerTunnel * serverTunnel; |
|
|
|
|
|
|
|
i2p::stream::SAMBridge * samBridge; |
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
Daemon_Singleton::Daemon_Singleton() : running(1), d(*new Daemon_Singleton_Private()) {}; |
|
|
|
Daemon_Singleton::Daemon_Singleton() : running(1), d(*new Daemon_Singleton_Private()) {}; |
|
|
@ -105,7 +91,6 @@ namespace i2p |
|
|
|
d.httpServer = new i2p::util::HTTPServer(i2p::util::config::GetArg("-httpport", 7070)); |
|
|
|
d.httpServer = new i2p::util::HTTPServer(i2p::util::config::GetArg("-httpport", 7070)); |
|
|
|
d.httpServer->Start(); |
|
|
|
d.httpServer->Start(); |
|
|
|
LogPrint("HTTP Server started"); |
|
|
|
LogPrint("HTTP Server started"); |
|
|
|
|
|
|
|
|
|
|
|
i2p::data::netdb.Start(); |
|
|
|
i2p::data::netdb.Start(); |
|
|
|
LogPrint("NetDB started"); |
|
|
|
LogPrint("NetDB started"); |
|
|
|
i2p::transports.Start(); |
|
|
|
i2p::transports.Start(); |
|
|
@ -115,52 +100,12 @@ namespace i2p |
|
|
|
i2p::client::context.Start (); |
|
|
|
i2p::client::context.Start (); |
|
|
|
LogPrint("Client started"); |
|
|
|
LogPrint("Client started"); |
|
|
|
|
|
|
|
|
|
|
|
d.httpProxy = new i2p::proxy::HTTPProxy(i2p::util::config::GetArg("-httpproxyport", 4446)); |
|
|
|
|
|
|
|
d.httpProxy->Start(); |
|
|
|
|
|
|
|
LogPrint("HTTP Proxy started"); |
|
|
|
|
|
|
|
d.socksProxy = new i2p::proxy::SOCKSProxy(i2p::util::config::GetArg("-socksproxyport", 4447)); |
|
|
|
|
|
|
|
d.socksProxy->Start(); |
|
|
|
|
|
|
|
LogPrint("SOCKS Proxy Started"); |
|
|
|
|
|
|
|
std::string ircDestination = i2p::util::config::GetArg("-ircdest", ""); |
|
|
|
|
|
|
|
if (ircDestination.length () > 0) // ircdest is presented
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
i2p::stream::StreamingDestination * localDestination = nullptr; |
|
|
|
|
|
|
|
std::string ircKeys = i2p::util::config::GetArg("-irckeys", ""); |
|
|
|
|
|
|
|
if (ircKeys.length () > 0) |
|
|
|
|
|
|
|
localDestination = i2p::client::LoadLocalDestination (ircKeys, false); |
|
|
|
|
|
|
|
d.ircTunnel = new i2p::stream::I2PClientTunnel (d.socksProxy->GetService (), ircDestination, |
|
|
|
|
|
|
|
i2p::util::config::GetArg("-ircport", 6668), localDestination); |
|
|
|
|
|
|
|
d.ircTunnel->Start (); |
|
|
|
|
|
|
|
LogPrint("IRC tunnel started"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
std::string eepKeys = i2p::util::config::GetArg("-eepkeys", ""); |
|
|
|
|
|
|
|
if (eepKeys.length () > 0) // eepkeys file is presented
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
auto localDestination = i2p::client::LoadLocalDestination (eepKeys, true); |
|
|
|
|
|
|
|
d.serverTunnel = new i2p::stream::I2PServerTunnel (d.socksProxy->GetService (), |
|
|
|
|
|
|
|
i2p::util::config::GetArg("-eephost", "127.0.0.1"), i2p::util::config::GetArg("-eepport", 80), |
|
|
|
|
|
|
|
localDestination); |
|
|
|
|
|
|
|
d.serverTunnel->Start (); |
|
|
|
|
|
|
|
LogPrint("Server tunnel started"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
int samPort = i2p::util::config::GetArg("-samport", 0); |
|
|
|
|
|
|
|
if (samPort) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
d.samBridge = new i2p::stream::SAMBridge (samPort); |
|
|
|
|
|
|
|
d.samBridge->Start (); |
|
|
|
|
|
|
|
LogPrint("SAM bridge started"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
bool Daemon_Singleton::stop() |
|
|
|
bool Daemon_Singleton::stop() |
|
|
|
{ |
|
|
|
{ |
|
|
|
LogPrint("Shutdown started."); |
|
|
|
LogPrint("Shutdown started."); |
|
|
|
|
|
|
|
|
|
|
|
d.httpProxy->Stop(); |
|
|
|
|
|
|
|
LogPrint("HTTP Proxy stoped"); |
|
|
|
|
|
|
|
d.socksProxy->Stop(); |
|
|
|
|
|
|
|
LogPrint("SOCKS Proxy stoped"); |
|
|
|
|
|
|
|
i2p::client::context.Stop(); |
|
|
|
i2p::client::context.Stop(); |
|
|
|
LogPrint("Client stoped"); |
|
|
|
LogPrint("Client stoped"); |
|
|
|
i2p::tunnel::tunnels.Stop(); |
|
|
|
i2p::tunnel::tunnels.Stop(); |
|
|
@ -171,34 +116,9 @@ namespace i2p |
|
|
|
LogPrint("NetDB stoped"); |
|
|
|
LogPrint("NetDB stoped"); |
|
|
|
d.httpServer->Stop(); |
|
|
|
d.httpServer->Stop(); |
|
|
|
LogPrint("HTTP Server stoped"); |
|
|
|
LogPrint("HTTP Server stoped"); |
|
|
|
if (d.ircTunnel) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
d.ircTunnel->Stop (); |
|
|
|
|
|
|
|
delete d.ircTunnel; |
|
|
|
|
|
|
|
d.ircTunnel = nullptr; |
|
|
|
|
|
|
|
LogPrint("IRC tunnel stoped"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (d.serverTunnel) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
d.serverTunnel->Stop (); |
|
|
|
|
|
|
|
delete d.serverTunnel; |
|
|
|
|
|
|
|
d.serverTunnel = nullptr; |
|
|
|
|
|
|
|
LogPrint("Server tunnel stoped"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (d.samBridge) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
d.samBridge->Stop (); |
|
|
|
|
|
|
|
delete d.samBridge; |
|
|
|
|
|
|
|
d.samBridge = nullptr; |
|
|
|
|
|
|
|
LogPrint("SAM brdige stoped"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StopLog (); |
|
|
|
StopLog (); |
|
|
|
|
|
|
|
|
|
|
|
delete d.socksProxy; d.socksProxy = nullptr; |
|
|
|
|
|
|
|
delete d.httpProxy; d.httpProxy = nullptr; |
|
|
|
|
|
|
|
delete d.httpServer; d.httpServer = nullptr; |
|
|
|
delete d.httpServer; d.httpServer = nullptr; |
|
|
|
delete d.samBridge; d.samBridge = nullptr; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|