i2pd/i2p.cpp

44 lines
1.1 KiB
C++
Raw Normal View History

2013-12-10 17:05:42 +04:00
#include <iostream>
2014-01-12 23:35:51 +04:00
#include <thread>
2013-12-10 17:05:42 +04:00
#include <cryptopp/integer.h>
#include "Log.h"
#include "base64.h"
#include "Transports.h"
#include "NTCPSession.h"
#include "RouterInfo.h"
#include "RouterContext.h"
#include "Tunnel.h"
#include "NetDb.h"
#include "HTTPServer.h"
2014-01-30 04:56:48 +04:00
#include "util.h"
2013-12-10 17:05:42 +04:00
2014-01-30 04:56:48 +04:00
int main( int argc, char* argv[] )
2013-12-10 17:05:42 +04:00
{
i2p::util::OptionParser(argc,argv);
#ifdef _WIN32
setlocale(LC_CTYPE, "");
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
setlocale(LC_ALL, "Russian");
#endif
//TODO: This is an ugly workaround. fix it.
//TODO: Autodetect public IP.
i2p::context.OverrideNTCPAddress(i2p::util::GetCharArg("--host", "127.0.0.1"), i2p::util::GetIntArg("--port", 17070));
2014-01-30 04:56:48 +04:00
int httpport = i2p::util::GetIntArg("--httpport", 7070);
i2p::util::HTTPServer httpServer (httpport);
2013-12-10 17:05:42 +04:00
httpServer.Start ();
i2p::data::netdb.Start ();
i2p::transports.Start ();
i2p::tunnel::tunnels.Start ();
2014-01-12 23:35:51 +04:00
std::this_thread::sleep_for (std::chrono::seconds(10000));
2013-12-10 17:05:42 +04:00
i2p::tunnel::tunnels.Stop ();
i2p::transports.Stop ();
i2p::data::netdb.Stop ();
httpServer.Stop ();
return 0;
}