Browse Source

OFF BY ONE

pull/574/head
Jeff Becker 8 years ago
parent
commit
586f241074
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B
  1. 3
      NetDb.cpp

3
NetDb.cpp

@ -748,7 +748,8 @@ namespace data @@ -748,7 +748,8 @@ namespace data
uint8_t numTags = sessionKey[32];
if (numTags > 0)
{
const uint8_t * sessionTag = sessionKey + 33; // take first tag
sessionKey ++;
const uint8_t * sessionTag = sessionKey + 32; // take first tag
i2p::garlic::GarlicRoutingSession garlic (sessionKey, sessionTag);
replyMsg = garlic.WrapSingleMessage (replyMsg);
}

Loading…
Cancel
Save