File indexing completed on 2025-01-30 09:33:45
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_ASIO_REDIRECT_ERROR_HPP
0012 #define BOOST_ASIO_REDIRECT_ERROR_HPP
0013
0014 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
0015 # pragma once
0016 #endif
0017
0018 #include <boost/asio/detail/config.hpp>
0019 #include <boost/asio/detail/type_traits.hpp>
0020 #include <boost/system/error_code.hpp>
0021
0022 #include <boost/asio/detail/push_options.hpp>
0023
0024 namespace boost {
0025 namespace asio {
0026
0027
0028
0029
0030
0031
0032
0033 template <typename CompletionToken>
0034 class redirect_error_t
0035 {
0036 public:
0037
0038 template <typename T>
0039 redirect_error_t(T&& completion_token, boost::system::error_code& ec)
0040 : token_(static_cast<T&&>(completion_token)),
0041 ec_(ec)
0042 {
0043 }
0044
0045
0046 CompletionToken token_;
0047 boost::system::error_code& ec_;
0048 };
0049
0050
0051 template <typename CompletionToken>
0052 inline redirect_error_t<decay_t<CompletionToken>> redirect_error(
0053 CompletionToken&& completion_token, boost::system::error_code& ec)
0054 {
0055 return redirect_error_t<decay_t<CompletionToken>>(
0056 static_cast<CompletionToken&&>(completion_token), ec);
0057 }
0058
0059 }
0060 }
0061
0062 #include <boost/asio/detail/pop_options.hpp>
0063
0064 #include <boost/asio/impl/redirect_error.hpp>
0065
0066 #endif