1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

mark inbound traffic as convotag active

This commit is contained in:
Jeff Becker 2021-05-15 06:23:45 -04:00
parent 5fb457e18a
commit f1efcc29ea
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -1083,9 +1083,10 @@ namespace llarp
PutReplyIntroFor(msg->tag, path->intro);
Introduction intro;
intro.pathID = from;
intro.router = PubKey(path->Endpoint());
intro.router = PubKey{path->Endpoint()};
intro.expiresAt = std::min(path->ExpireTime(), msg->introReply.expiresAt);
PutIntroFor(msg->tag, intro);
ConvoTagRX(msg->tag);
return ProcessDataMessage(msg);
}