Telnet++ 4.0.0.9
A C++ library for interacting with Telnet streams
Loading...
Searching...
No Matches
client.hpp
1#pragma once
2
3#include "telnetpp/core.hpp"
4#include "telnetpp/options/basic_client.hpp"
5#include "telnetpp/options/echo/detail/protocol.hpp"
6
8
9//* =========================================================================
14//* =========================================================================
15class TELNETPP_EXPORT client : public telnetpp::options::basic_client<
16 telnetpp::options::echo::detail::option>
17{
18public:
19 explicit client(telnetpp::session &sess) noexcept;
20};
21
22} // namespace telnetpp::options::echo
A class template that generates basic classes that handle no subnegotiations; they merely exist for e...
Definition basic_client.hpp:14
An implementation of the client side of Telnet ECHO option.
Definition client.hpp:17
An abstraction for a Telnet session.
Definition session.hpp:141
An implementation of the standard Telnet Echo option.
Definition client.hpp:7