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