RESTinio
Loading...
Searching...
No Matches
tls_fwd.hpp
Go to the documentation of this file.
1/*
2 * RESTinio
3 */
4
5/*!
6 * @file
7 * @brief Forward declarations for TLS-related things.
8 *
9 * @since v.0.5.2
10 */
11
12#pragma once
13
14namespace restinio
15{
16
17namespace impl
18{
19
20class tls_socket_t;
21
22// Just a forward declaration.
25 tls_socket_t & socket ) noexcept;
26
27} /* namespace impl */
28
29//! A public alias for the actual implementation of TLS-socket.
31
32} /* namespace restinio */
Socket adapter for asio::ssl::stream< asio::ip::tcp::socket >.
tls_socket_t * make_tls_socket_pointer_for_state_listener(tls_socket_t &socket) noexcept
Definition tls.hpp:325
impl::tls_socket_t tls_socket_t
A public alias for the actual implementation of TLS-socket.
Definition tls_fwd.hpp:30