i2pd/api/api.cpp

59 lines
1.2 KiB
C++
Raw Normal View History

2014-11-17 22:42:45 +03:00
#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"
2014-11-17 20:37:40 +03:00
#include "api.h"
namespace i2p
{
namespace api
{
2014-11-17 22:42:45 +03:00
static std::map<i2p::data::IdentHash, i2p::client::ClientDestination *> g_Destinations;
void InitI2P (int argc, char* argv[])
{
2014-11-17 23:28:52 +03:00
i2p::util::filesystem::SetAppName (argv[0]);
2014-11-17 22:42:45 +03:00
i2p::util::config::OptionParser(argc, argv);
i2p::context.Init ();
}
void StartI2P ()
{
2014-11-17 23:28:52 +03:00
StartLog (i2p::util::filesystem::GetAppName () + ".log");
2014-11-17 22:42:45 +03:00
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 ();
}
2014-11-17 20:37:40 +03:00
}
}