#include "Connection.hpp"
#include <boost/asio/ip/tcp.hpp>
#include <boost/uuid/nil_generator.hpp>
#include <set>
#include <memory>
Classes | |
class | EPS::TCPConnection |
TCP connection. More... | |
Namespaces | |
EPS | |
Typedefs | |
typedef std::shared_ptr< EPS::TCPConnection > | EPS::TConnPtr |
TCP connections are dynamically allocated when a socket is needed, so this type allows us to easily manage the lifespan of all connections. More... | |
typedef std::set< TConnPtr > | EPS::TCPConns |
When multiple TCP connections need to be grouped. More... | |