From: Loïc Blot Date: Mon, 4 Sep 2017 14:46:03 +0000 (+0200) Subject: Re-apply previous commit with a typo fix X-Git-Tag: 5.0.0~856 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c05228fa6d446022cdf675865f9a420c95619313;p=oweals%2Fminetest.git Re-apply previous commit with a typo fix --- diff --git a/src/network/connection.h b/src/network/connection.h index e1bb613f0..d569722bf 100644 --- a/src/network/connection.h +++ b/src/network/connection.h @@ -330,6 +330,18 @@ struct ConnectionCommand bool raw = false; ConnectionCommand() = default; + ConnectionCommand &operator=(const ConnectionCommand &other) + { + type = other.type; + address = other.address; + peer_id = other.peer_id; + channelnum = other.channelnum; + // We must copy the buffer here to prevent race condition + data = SharedBuffer(*other.data, other.data.getSize()); + reliable = other.reliable; + raw = other.raw; + return *this; + } void serve(Address address_) {