Telnet++ 4.0.0.9
A C++ library for interacting with Telnet streams
Loading...
Searching...
No Matches
decoder.hpp
1#pragma once
2
3#include "telnetpp/options/msdp/variable.hpp"
4
5#include <functional>
6
7namespace telnetpp::options::msdp::detail {
8
9//* =========================================================================
11//* =========================================================================
12TELNETPP_EXPORT
13void decode(
14 telnetpp::bytes data,
15 std::function<void(telnetpp::options::msdp::variable const &)> const &cont);
16
17} // namespace telnetpp::options::msdp::detail
A structure that represents a named value.
Definition variable.hpp:30