From 95316118206aeed718ae6260ef9b5a1a4a6dacd8 Mon Sep 17 00:00:00 2001 From: Determinant Date: Thu, 19 Jul 2018 14:43:35 -0400 Subject: fix mem leak --- src/hotstuff_client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/hotstuff_client.cpp') diff --git a/src/hotstuff_client.cpp b/src/hotstuff_client.cpp index f9bfb94..bee60c3 100644 --- a/src/hotstuff_client.cpp +++ b/src/hotstuff_client.cpp @@ -39,7 +39,7 @@ struct Request { std::unordered_map buffers; std::unordered_map waiting; -MsgNetwork mn(eb, 10, 0, 2, 4096); +MsgNetwork mn(eb, 10, 10, 4096); std::unordered_map::conn_t> conns; std::vector replicas; @@ -48,7 +48,7 @@ void set_proposer(ReplicaID rid) { proposer = rid; auto it = conns.find(rid); if (it == conns.end()) - conns.insert(std::make_pair(rid, mn.create_conn(replicas[rid]))); + conns.insert(std::make_pair(rid, mn.connect(replicas[rid]))); } void try_send() { -- cgit v1.2.3