]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/include/boost/asio/ssl/error.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / asio / include / boost / asio / ssl / error.hpp
CommitLineData
7c673cae
FG
1//
2// ssl/error.hpp
3// ~~~~~~~~~~~~~
4//
5// Copyright (c) 2003-2016 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_ERROR_HPP
12#define BOOST_ASIO_SSL_ERROR_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#include <boost/system/error_code.hpp>
20
21#include <boost/asio/detail/push_options.hpp>
22
23namespace boost {
24namespace asio {
25namespace error {
26
27enum ssl_errors
28{
29 // Error numbers are those produced by openssl.
30};
31
32extern BOOST_ASIO_DECL
33const boost::system::error_category& get_ssl_category();
34
35static const boost::system::error_category& ssl_category
36 = boost::asio::error::get_ssl_category();
37
38} // namespace error
39namespace ssl {
40namespace error {
41
42enum stream_errors
43{
44#if defined(GENERATING_DOCUMENTATION)
45 /// The underlying stream closed before the ssl stream gracefully shut down.
46 stream_truncated
47#elif (OPENSSL_VERSION_NUMBER < 0x10100000L) && !defined(OPENSSL_IS_BORINGSSL)
48 stream_truncated = ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SHORT_READ)
49#else
50 stream_truncated = 1
51#endif
52};
53
54extern BOOST_ASIO_DECL
55const boost::system::error_category& get_stream_category();
56
57static const boost::system::error_category& stream_category
58 = boost::asio::ssl::error::get_stream_category();
59
60} // namespace error
61} // namespace ssl
62} // namespace asio
63} // namespace boost
64
65namespace boost {
66namespace system {
67
68template<> struct is_error_code_enum<boost::asio::error::ssl_errors>
69{
70 static const bool value = true;
71};
72
73template<> struct is_error_code_enum<boost::asio::ssl::error::stream_errors>
74{
75 static const bool value = true;
76};
77
78} // namespace system
79} // namespace boost
80
81namespace boost {
82namespace asio {
83namespace error {
84
85inline boost::system::error_code make_error_code(ssl_errors e)
86{
87 return boost::system::error_code(
88 static_cast<int>(e), get_ssl_category());
89}
90
91} // namespace error
92namespace ssl {
93namespace error {
94
95inline boost::system::error_code make_error_code(stream_errors e)
96{
97 return boost::system::error_code(
98 static_cast<int>(e), get_stream_category());
99}
100
101} // namespace error
102} // namespace ssl
103} // namespace asio
104} // namespace boost
105
106#include <boost/asio/detail/pop_options.hpp>
107
108#if defined(BOOST_ASIO_HEADER_ONLY)
109# include <boost/asio/ssl/impl/error.ipp>
110#endif // defined(BOOST_ASIO_HEADER_ONLY)
111
112#endif // BOOST_ASIO_SSL_ERROR_HPP