устранены ошибки компиляции
pull/7/head
mikhail4021 11 years ago
parent 653a2be378
commit a34e0cd59e

@ -52,9 +52,17 @@ namespace data
memcpy (buf, (const uint8_t *)ident, 32);
time_t t = time (nullptr);
struct tm tm;
gmtime_r (&t, &tm);
sprintf ((char *)(buf + 32),"%4i%2i%2i", tm.tm_year, tm.tm_mon, tm.tm_mday);
// WARNING!!! check if it is correct
#ifdef _WIN32
gmtime_s(&tm, &t);
// тут возвращается какое-то значение sprintf'ом. может стоит его проверять?
// http://msdn.microsoft.com/en-us/library/ce3zzk1k.aspx
sprintf_s((char *)(buf + 32), 9, "%4i%2i%2i", tm.tm_year, tm.tm_mon, tm.tm_mday);
#else
gmtime_r(&t, &tm);
// тут возвращается какое-то значение sprintf'ом. может стоит его проверять?
sprintf((char *)(buf + 32), "%4i%2i%2i", tm.tm_year, tm.tm_mon, tm.tm_mday);
#endif
RoutingKey key;
CryptoPP::SHA256().CalculateDigest(key.hash, buf, 40);
return key;

@ -2,6 +2,7 @@
#include "CryptoConst.h"
#include "Log.h"
#include "LeaseSet.h"
#include "I2PEndian.h"
namespace i2p
{

@ -169,7 +169,7 @@ namespace data
{
for (boost::filesystem::directory_iterator it1 (it->path ()); it1 != end; ++it1)
{
RouterInfo * r = new RouterInfo (it1->path ().c_str ()); // FIXME!!! path::value_type != char in boost 1_55 on Windows. How to solve?
RouterInfo * r = new RouterInfo (it1->path().string().c_str ());
m_RouterInfos[r->GetIdentHash ()] = r;
numRouters++;
}

@ -143,7 +143,7 @@ namespace tunnel
CryptoPP::SHA256().CalculateDigest (hash, payload, size+16);
memcpy (buf+20, hash, 4); // checksum
payload[-1] = 0; // zero
ssize_t paddingSize = payload - buf - 25; // 25 = 24 + 1
ptrdiff_t paddingSize = payload - buf - 25; // 25 = 24 + 1
if (paddingSize > 0)
memset (buf + 24, 1, paddingSize); // padding TODO: fill with random data

Loading…
Cancel
Save