This is a special kind of ConnectionReader that waits for activity on a rendezvous port and accepts a TCP connection (instead of attempting to read a datagram from the rendezvous port). More...
#include "connectionListener.h"
Public Member Functions | |
ConnectionListener (ConnectionManager *manager, int num_threads, const std::string &thread_name=std::string()) | |
Public Member Functions inherited from ConnectionReader | |
ConnectionReader (ConnectionManager *manager, int num_threads, const std::string &thread_name=std::string()) | |
Creates a new ConnectionReader with the indicated number of threads to handle requests. More... | |
bool | add_connection (Connection *connection) |
Adds a new socket to the list of sockets the ConnectionReader will monitor. More... | |
ConnectionManager * | get_manager () const |
Returns a pointer to the ConnectionManager object that serves this ConnectionReader. More... | |
int | get_num_threads () const |
Returns the number of threads the ConnectionReader has been created with. More... | |
bool | get_raw_mode () const |
Returns the current setting of the raw mode flag. More... | |
int | get_tcp_header_size () const |
Returns the current setting of TCP header size. More... | |
bool | is_connection_ok (Connection *connection) |
Returns true if the indicated connection has been added to the ConnectionReader and is being monitored properly, false if it is not known, or if there was some error condition detected on the connection. More... | |
bool | is_polling () const |
Returns true if the reader is a polling reader, i.e. More... | |
void | poll () |
Explicitly polls the available sockets to see if any of them have any noise. More... | |
bool | remove_connection (Connection *connection) |
Removes a socket from the list of sockets being monitored. More... | |
void | set_raw_mode (bool mode) |
Sets the ConnectionReader into raw mode (or turns off raw mode). More... | |
void | set_tcp_header_size (int tcp_header_size) |
Sets the header size of TCP packets. More... | |
void | shutdown () |
Terminates all threads cleanly. More... | |
This is a special kind of ConnectionReader that waits for activity on a rendezvous port and accepts a TCP connection (instead of attempting to read a datagram from the rendezvous port).
It is itself an abstract class, as it doesn't define what to do with the established connection. See QueuedConnectionListener.
Definition at line 31 of file connectionListener.h.