]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/asio/ssl/detail/handshake_op.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / asio / ssl / detail / handshake_op.hpp
CommitLineData
7c673cae
FG
1//
2// ssl/detail/handshake_op.hpp
3// ~~~~~~~~~~~~~~~~~~~~~~~~~~~
4//
f67539c2 5// Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
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_HANDSHAKE_OP_HPP
12#define BOOST_ASIO_SSL_DETAIL_HANDSHAKE_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
b32b8144 20#include <boost/asio/ssl/detail/engine.hpp>
7c673cae
FG
21
22#include <boost/asio/detail/push_options.hpp>
23
24namespace boost {
25namespace asio {
26namespace ssl {
27namespace detail {
28
7c673cae
FG
29class handshake_op
30{
31public:
32 handshake_op(stream_base::handshake_type type)
33 : type_(type)
34 {
35 }
36
37 engine::want operator()(engine& eng,
38 boost::system::error_code& ec,
39 std::size_t& bytes_transferred) const
40 {
41 bytes_transferred = 0;
42 return eng.handshake(type_, ec);
43 }
44
45 template <typename Handler>
46 void call_handler(Handler& handler,
47 const boost::system::error_code& ec,
48 const std::size_t&) const
49 {
50 handler(ec);
51 }
52
53private:
54 stream_base::handshake_type type_;
55};
56
7c673cae
FG
57} // namespace detail
58} // namespace ssl
59} // namespace asio
60} // namespace boost
61
62#include <boost/asio/detail/pop_options.hpp>
63
64#endif // BOOST_ASIO_SSL_DETAIL_HANDSHAKE_OP_HPP