use _USE_32BIT_TIME_T in win32 build

Add i2pd.exe in .gitignore
pull/797/head
r4sas 7 years ago
parent 35b5dcdb22
commit d96dbe9365

1
.gitignore vendored

@ -8,6 +8,7 @@ netDb
/i2pd
/libi2pd.a
/libi2pdclient.a
i2pd.exe
# Autotools

@ -5,6 +5,12 @@
#include "I2PEndian.h"
#include "Timestamp.h"
#ifdef WIN32
#ifndef _WIN64
#define _USE_32BIT_TIME_T
#endif
#endif
namespace i2p
{
namespace util
@ -33,17 +39,17 @@ namespace util
socket.send_to (boost::asio::buffer (buf, 48), ep);
int i = 0;
while (!socket.available() && i < 10) // 10 seconds max
{
{
std::this_thread::sleep_for (std::chrono::seconds(1));
i++;
}
}
if (socket.available ())
len = socket.receive_from (boost::asio::buffer (buf, 48), ep);
}
catch (std::exception& e)
{
LogPrint (eLogError, "NTP error: ", e.what ());
}
}
if (len >= 8)
{
auto ourTs = GetSecondsSinceEpoch ();
@ -51,10 +57,10 @@ namespace util
if (ts > 2208988800U) ts -= 2208988800U; // 1/1/1970 from 1/1/1900
g_TimeOffset = ts - ourTs;
LogPrint (eLogInfo, address, " time offset from system time is ", g_TimeOffset, " seconds");
}
}
}
}
}
}
}
}

Loading…
Cancel
Save