SYMBOL INDEX (42 symbols across 15 files) FILE: examples/client_example.cpp function sig_exit (line 14) | void sig_exit(int s) function onIncomingMsg (line 27) | void onIncomingMsg(const char * msg, size_t size) { function onDisconnection (line 32) | void onDisconnection(const pipe_ret_t & ret) { function printMenu (line 36) | void printMenu() { function getMenuSelection (line 42) | int getMenuSelection() { function handleMenuSelection (line 52) | bool handleMenuSelection(int selection) { function main (line 90) | int main() { FILE: examples/server_example.cpp function onIncomingMsg1 (line 22) | void onIncomingMsg1(const std::string &clientIP, const char * msg, size_... function onIncomingMsg2 (line 30) | void onIncomingMsg2(const std::string &clientIP, const char * msg, size_... function onClientDisconnected (line 37) | void onClientDisconnected(const std::string &ip, const std::string &msg) { function acceptClient (line 44) | void acceptClient() { function printMenu (line 56) | void printMenu() { function getMenuSelection (line 64) | int getMenuSelection() { function handleMenuSelection (line 78) | bool handleMenuSelection(int selection) { function main (line 135) | int main() FILE: include/client.h function class (line 14) | class Client { FILE: include/client_event.h type ClientEvent (line 3) | enum ClientEvent { FILE: include/client_observer.h type client_observer_t (line 7) | struct client_observer_t { FILE: include/common.h function namespace (line 7) | namespace fd_wait { FILE: include/file_descriptor.h function class (line 3) | class FileDescriptor { FILE: include/pipe_ret_t.h function class (line 3) | class pipe_ret_t { FILE: include/server_observer.h type server_observer_t (line 7) | struct server_observer_t { FILE: include/tcp_client.h function class (line 24) | class TcpClient FILE: include/tcp_server.h function class (line 22) | class TcpServer { FILE: src/common.cpp type fd_wait (line 10) | namespace fd_wait { function Result (line 14) | Result waitFor(const FileDescriptor &fileDescriptor, uint32_t timeoutS... FILE: src/pipe_ret_t.cpp function pipe_ret_t (line 4) | pipe_ret_t pipe_ret_t::failure(const std::string &msg) { function pipe_ret_t (line 8) | pipe_ret_t pipe_ret_t::success(const std::string &msg) { FILE: src/tcp_client.cpp function pipe_ret_t (line 14) | pipe_ret_t TcpClient::connectTo(const std::string & address, int port) { type hostent (line 54) | struct hostent type in_addr (line 55) | struct in_addr type in_addr (line 59) | struct in_addr function pipe_ret_t (line 67) | pipe_ret_t TcpClient::sendMsg(const char * msg, size_t size) { function pipe_ret_t (line 158) | pipe_ret_t TcpClient::close(){ FILE: src/tcp_server.cpp function pipe_ret_t (line 124) | pipe_ret_t TcpServer::start(int port, int maxNumOfClients, bool removeDe... type sockaddr (line 156) | struct sockaddr type sockaddr (line 186) | struct sockaddr function pipe_ret_t (line 205) | pipe_ret_t TcpServer::waitForClient(uint32_t timeout) { function pipe_ret_t (line 226) | pipe_ret_t TcpServer::sendToAllClients(const char * msg, size_t size) { function pipe_ret_t (line 243) | pipe_ret_t TcpServer::sendToClient(const Client & client, const char * m... function pipe_ret_t (line 253) | pipe_ret_t TcpServer::sendToClient(const std::string & clientIP, const c... function pipe_ret_t (line 271) | pipe_ret_t TcpServer::close() {