Telnet++ 4.0.0.9
A C++ library for interacting with Telnet streams
Loading...
Searching...
No Matches
stream.hpp
1#pragma once
2
3#include "telnetpp/core.hpp"
4#include "telnetpp/options/new_environ/detail/protocol.hpp"
5#include "telnetpp/options/new_environ/protocol.hpp"
6
7namespace telnetpp::options::new_environ::detail {
8
9//* =========================================================================
11//* =========================================================================
12TELNETPP_EXPORT
13void append_escaped(telnetpp::byte_storage &storage, telnetpp::bytes content);
14
15//* =========================================================================
17//* =========================================================================
18constexpr telnetpp::options::new_environ::variable_type byte_to_type(byte by)
19{
20 return by == detail::var ? variable_type::var : variable_type::uservar;
21}
22
23} // namespace telnetpp::options::new_environ::detail
variable_type
An enumeration of the type of variables that NEW_ENVIRON handles.
Definition protocol.hpp:13