Telnet++
A C++ library for interacting with Telnet streams
telnetpp.hpp
1 #pragma once
2 
3 // For sending commands, it's necessary to know what the commands in the
4 // protocol are.
5 #include "telnetpp/protocol.hpp"
6 
7 // With the addition of the session object, the client need then only
8 // include the specific required options in order to have a complete Telnet
9 // layer.
10 #include "telnetpp/session.hpp"