Fix cause of issue with LinkLayerTest.TestUTPAliceConnectToBob

pull/266/head
Michael 5 years ago
parent f3b0af9d2f
commit 6f0ce07571
No known key found for this signature in database
GPG Key ID: 2D51757B47E2434C

@ -65,6 +65,13 @@ namespace llarp
{
}
InboundMessage(const InboundMessage& other)
: lastActive(other.lastActive), _msg(other._msg), buffer(_msg)
{
buffer.cur = buffer.base + (other.buffer.cur - other.buffer.base);
buffer.sz = other.buffer.sz;
}
bool
operator==(const InboundMessage& other) const
{

Loading…
Cancel
Save