mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
fixed compilation error
This commit is contained in:
parent
9363547205
commit
460d4e754e
4
i2p.cpp
4
i2p.cpp
@ -1,6 +1,6 @@
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
#include <cryptopp/integer.h>
|
||||
#include <boost/thread.hpp>
|
||||
#include "Log.h"
|
||||
#include "base64.h"
|
||||
#include "Transports.h"
|
||||
@ -20,7 +20,7 @@ int main( int, char** )
|
||||
i2p::transports.Start ();
|
||||
i2p::tunnel::tunnels.Start ();
|
||||
|
||||
boost::this_thread::sleep(boost::posix_time::seconds(1000));
|
||||
std::this_thread::sleep_for (std::chrono::seconds(10000));
|
||||
i2p::tunnel::tunnels.Stop ();
|
||||
i2p::transports.Stop ();
|
||||
i2p::data::netdb.Stop ();
|
||||
|
Loading…
Reference in New Issue
Block a user