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