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.
29 lines
585 B
29 lines
585 B
11 years ago
|
#include <iostream>
|
||
|
#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"
|
||
|
|
||
|
int main( int, char** )
|
||
|
{
|
||
|
i2p::util::HTTPServer httpServer (7070);
|
||
|
|
||
|
httpServer.Start ();
|
||
|
i2p::data::netdb.Start ();
|
||
|
i2p::transports.Start ();
|
||
|
i2p::tunnel::tunnels.Start ();
|
||
|
|
||
|
sleep (1000);
|
||
|
i2p::tunnel::tunnels.Stop ();
|
||
|
i2p::transports.Stop ();
|
||
|
i2p::data::netdb.Stop ();
|
||
|
httpServer.Stop ();
|
||
|
return 0;
|
||
|
}
|