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