]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/asio/ssl/detail/shutdown_op.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / asio / ssl / detail / shutdown_op.hpp
1 //
2 // ssl/detail/shutdown_op.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
10
11 #ifndef BOOST_ASIO_SSL_DETAIL_SHUTDOWN_OP_HPP
12 #define BOOST_ASIO_SSL_DETAIL_SHUTDOWN_OP_HPP
13
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
15 # pragma once
16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
17
18 #include <boost/asio/detail/config.hpp>
19
20 #include <boost/asio/ssl/detail/engine.hpp>
21
22 #include <boost/asio/detail/push_options.hpp>
23
24 namespace boost {
25 namespace asio {
26 namespace ssl {
27 namespace detail {
28
29 class shutdown_op
30 {
31 public:
32 engine::want operator()(engine& eng,
33 boost::system::error_code& ec,
34 std::size_t& bytes_transferred) const
35 {
36 bytes_transferred = 0;
37 return eng.shutdown(ec);
38 }
39
40 template <typename Handler>
41 void call_handler(Handler& handler,
42 const boost::system::error_code& ec,
43 const std::size_t&) const
44 {
45 handler(ec);
46 }
47 };
48
49 } // namespace detail
50 } // namespace ssl
51 } // namespace asio
52 } // namespace boost
53
54 #include <boost/asio/detail/pop_options.hpp>
55
56 #endif // BOOST_ASIO_SSL_DETAIL_SHUTDOWN_OP_HPP