From 54f5abf3d4dac9cdf04846d5b952799c31753c9d Mon Sep 17 00:00:00 2001 From: Determinant Date: Sat, 29 Jun 2019 14:13:59 -0400 Subject: ... --- test/bench_network.cpp | 2 +- test/bench_network_tls.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/bench_network.cpp b/test/bench_network.cpp index 64e53c2..ed2642a 100644 --- a/test/bench_network.cpp +++ b/test/bench_network.cpp @@ -106,7 +106,7 @@ struct MyNet: public MsgNetworkByteOp { /* send the first message through this connection */ trigger = [this, conn](ThreadCall::Handle &) { send_msg(MsgBytes(256), salticidae::static_pointer_cast(conn)); - if (conn->get_mode() != MyNet::Conn::DEAD) + if (!conn->is_terminated()) tcall.async_call(trigger); }; tcall.async_call(trigger); diff --git a/test/bench_network_tls.cpp b/test/bench_network_tls.cpp index cb466ad..89e39a8 100644 --- a/test/bench_network_tls.cpp +++ b/test/bench_network_tls.cpp @@ -110,7 +110,7 @@ struct MyNet: public MsgNetworkByteOp { /* send the first message through this connection */ trigger = [this, conn](ThreadCall::Handle &) { send_msg(MsgBytes(256), salticidae::static_pointer_cast(conn)); - if (conn->get_mode() != MyNet::Conn::DEAD) + if (!conn->is_terminated()) tcall.async_call(trigger); }; tcall.async_call(trigger); -- cgit v1.2.3