#include <Common/Compat.h>#include "DispatchHandler.h"#include "Comm.h"#include "CommHeader.h"#include "Event.h"#include <Common/Init.h>#include <Common/Error.h>#include <Common/InetAddr.h>#include <Common/Logger.h>#include <Common/System.h>#include <Common/Usage.h>#include <Common/Serialization.h>#include <boost/thread/thread.hpp>#include <chrono>#include <condition_variable>#include <cstdio>#include <fstream>#include <iostream>#include <mutex>#include <queue>#include <string>#include <thread>#include <netdb.h>#include <errno.h>#include <pthread.h>#include <stdint.h>#include <string.h>
Go to the source code of this file.
Classes | |
| class | ResponseHandler |
| (somewhat) Abstract base class for response handlers; Defines the message queue and the mutex and condition variable to protect it. More... | |
| class | ResponseHandlerTCP |
| This is the dispatch handler that gets installed as the default handler for the TCP connection. More... | |
| class | HandlerFactory |
| This handler factory gets passed into Comm::listen. More... | |
| class | ResponseHandlerUDP |
| This is the dispatch handler that gets installed as the default handler for UDP mode. More... | |
Functions | |
| int | main (int argc, char **argv) |
| main function More... | |
| int main | ( | int | argc, |
| char ** | argv | ||
| ) |
main function
Definition at line 240 of file sampleClient.cc.
1.8.8