mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.0 KiB
84 lines
2.0 KiB
#include <string> |
|
#include <map> |
|
#include "Log.h" |
|
#include "NetDb.h" |
|
#include "Transports.h" |
|
#include "Tunnel.h" |
|
#include "RouterContext.h" |
|
#include "Identity.h" |
|
#include "Destination.h" |
|
#include "util.h" |
|
#include "api.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace api |
|
{ |
|
static std::map<i2p::data::IdentHash, i2p::client::ClientDestination *> g_Destinations; |
|
|
|
void InitI2P (int argc, char* argv[]) |
|
{ |
|
i2p::util::filesystem::SetAppName ("i2papi"); |
|
i2p::util::config::OptionParser(argc, argv); |
|
i2p::context.Init (); |
|
} |
|
|
|
void StartI2P () |
|
{ |
|
StartLog (i2p::util::filesystem::GetAppName () + ".log"); |
|
i2p::data::netdb.Start(); |
|
LogPrint("NetDB started"); |
|
i2p::transport::transports.Start(); |
|
LogPrint("Transports started"); |
|
i2p::tunnel::tunnels.Start(); |
|
LogPrint("Tunnels started"); |
|
} |
|
|
|
void StopI2P () |
|
{ |
|
LogPrint("Shutdown started."); |
|
i2p::tunnel::tunnels.Stop(); |
|
LogPrint("Tunnels stoped"); |
|
i2p::transport::transports.Stop(); |
|
LogPrint("Transports stoped"); |
|
i2p::data::netdb.Stop(); |
|
LogPrint("NetDB stoped"); |
|
for (auto it: g_Destinations) |
|
{ |
|
it.second->Stop (); |
|
delete it.second; |
|
} |
|
g_Destinations.clear (); |
|
LogPrint("Local destinations deleted"); |
|
|
|
StopLog (); |
|
} |
|
|
|
i2p::client::ClientDestination * CreateLocalDestination (const i2p::data::PrivateKeys& keys) |
|
{ |
|
auto localDestination = new i2p::client::ClientDestination (keys, true); // public |
|
g_Destinations[localDestination->GetIdentHash ()] = localDestination; |
|
localDestination->Start (); |
|
return localDestination; |
|
} |
|
|
|
i2p::client::ClientDestination * CreateLocalDestination (i2p::data::SigningKeyType sigType) |
|
{ |
|
auto localDestination = new i2p::client::ClientDestination (true, sigType); // public |
|
g_Destinations[localDestination->GetIdentHash ()] = localDestination; |
|
localDestination->Start (); |
|
return localDestination; |
|
} |
|
|
|
void DestroyLocalDestination (i2p::client::ClientDestination * dest) |
|
{ |
|
if (dest) |
|
{ |
|
dest->Stop (); |
|
g_Destinations.erase (dest->GetIdentHash ()); |
|
delete dest; |
|
} |
|
} |
|
} |
|
} |
|
|
|
|