mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-29 12:17:49 +02:00
generate LeaseSet from tunnel pool
This commit is contained in:
parent
26c5f6cd77
commit
3313a5af5c
4 changed files with 40 additions and 9 deletions
3
i2p.cpp
3
i2p.cpp
|
@ -24,6 +24,7 @@
|
|||
#include "HTTPServer.h"
|
||||
#include "Garlic.h"
|
||||
#include "util.h"
|
||||
#include "Streaming.h"
|
||||
|
||||
|
||||
// Global
|
||||
|
@ -154,6 +155,7 @@ int main( int argc, char* argv[] )
|
|||
i2p::transports.Start ();
|
||||
i2p::tunnel::tunnels.Start ();
|
||||
i2p::garlic::routing.Start ();
|
||||
i2p::stream::StartStreaming ();
|
||||
|
||||
while (running)
|
||||
{
|
||||
|
@ -162,6 +164,7 @@ int main( int argc, char* argv[] )
|
|||
}
|
||||
LogPrint("Shutdown started.");
|
||||
|
||||
i2p::stream::StopStreaming ();
|
||||
i2p::garlic::routing.Stop ();
|
||||
i2p::tunnel::tunnels.Stop ();
|
||||
i2p::transports.Stop ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue