Bump libquic for message move/copy fixes

This commit is contained in:
Jason Rhinelander 2023-12-11 17:20:49 -04:00
parent 6c58f07a41
commit cece742cf3
No known key found for this signature in database
GPG Key ID: C4992CE7A88D4262
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 400e1cad8fd4509e925ab285363326b6e4f99f06
Subproject commit fdc92554a40414fdcdea1fa1bd84b2c827d21b1c

View File

@ -254,7 +254,7 @@ namespace llarp
if (func)
{
func = [this, f = std::move(func)](oxen::quic::message m) mutable {
_router.loop()->call([func = std::move(f), msg = std::move(m)]() mutable { func(msg); });
_router.loop()->call([func = std::move(f), msg = std::move(m)]() mutable { func(std::move(msg)); });
};
}