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

don't close link on message handl fail

This commit is contained in:
Jeff Becker 2019-02-23 12:54:35 -05:00
parent c626f7c9b7
commit a27dab46d1
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -1131,7 +1131,7 @@ namespace llarp
buf.underlying.cur = buf.underlying.base;
// process buffer
LogDebug("got message ", msgid, " from ", remoteAddr);
return parent->HandleMessage(this, buf.underlying);
parent->HandleMessage(this, buf.underlying);
}
return true;
}