summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asio/include/asio/detail/reactor_op.hpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/asio/include/asio/detail/reactor_op.hpp')
-rw-r--r--3rdparty/asio/include/asio/detail/reactor_op.hpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/3rdparty/asio/include/asio/detail/reactor_op.hpp b/3rdparty/asio/include/asio/detail/reactor_op.hpp
index 491787b09f2..54d6cd964eb 100644
--- a/3rdparty/asio/include/asio/detail/reactor_op.hpp
+++ b/3rdparty/asio/include/asio/detail/reactor_op.hpp
@@ -2,7 +2,7 @@
// detail/reactor_op.hpp
// ~~~~~~~~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -30,6 +30,9 @@ public:
// The error code to be passed to the completion handler.
asio::error_code ec_;
+ // The operation key used for targeted cancellation.
+ void* cancellation_key_;
+
// The number of bytes transferred, to be passed to the completion handler.
std::size_t bytes_transferred_;
@@ -46,8 +49,11 @@ public:
protected:
typedef status (*perform_func_type)(reactor_op*);
- reactor_op(perform_func_type perform_func, func_type complete_func)
+ reactor_op(const asio::error_code& success_ec,
+ perform_func_type perform_func, func_type complete_func)
: operation(complete_func),
+ ec_(success_ec),
+ cancellation_key_(0),
bytes_transferred_(0),
perform_func_(perform_func)
{