2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
20#ifndef NET_RC_STREAM_TLS_SOCKETCLIENT_H
21#define NET_RC_STREAM_TLS_SOCKETCLIENT_H
25#include "core/socket/stream/tls/SocketConnection.h"
26#include "core/socket/stream/tls/SocketConnector.h"
27#include "net/rc/stream/SocketClient.h"
28#include "net/rc/stream/tls/config/ConfigSocketClient.h"
34#ifndef DOXYGEN_SHOULD_SKIP_THIS
38namespace net::rc::stream::tls {
40 template <
typename SocketContextFactoryT,
typename... Args>
41 using SocketClient = net::rc::stream::SocketClient<core::socket::stream::tls::SocketConnector,
42 net::rc::stream::tls::config::ConfigSocketClient,
43 SocketContextFactoryT,
48extern template class core::
socket::
Socket<net::rc::stream::tls::config::ConfigSocketClient>;
50 net::rc::stream::tls::config::ConfigSocketClient>;
51extern template class core::socket::stream::tls::SocketConnection<net::rc::phy::stream::PhysicalSocketClient>;