From 460d4e754e8e50855d0dec1d758df0720fde05e2 Mon Sep 17 00:00:00 2001 From: orignal Date: Sun, 12 Jan 2014 14:35:51 -0500 Subject: [PATCH] fixed compilation error --- i2p.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/i2p.cpp b/i2p.cpp index be007d15..e2b44dfe 100644 --- a/i2p.cpp +++ b/i2p.cpp @@ -1,6 +1,6 @@ #include +#include #include -#include #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 ();