TcpListener.h 828 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #include <string>
  2. #include <sys/socket.h>
  3. #define MAX_BUFFER_SIZE (49152)
  4. class CTcpListener;
  5. typedef void (*MessageReceivedHandler)(CTcpListener* listener, int socketId, std::string msg);
  6. class CTcpListener {
  7. public:
  8. // constructor
  9. CTcpListener(std::string ipAddress, int port, MessageReceivedHandler handler);
  10. // destructor
  11. ~CTcpListener();
  12. // public methods
  13. // Send message to client
  14. void sendMessage(int clientSocket, std::string msg);
  15. // Initialize
  16. bool init();
  17. // Main process loop
  18. void run();
  19. // Cleanup
  20. void cleanup();
  21. private:
  22. // private methods
  23. int createSocket();
  24. int waitForConnection(int listening);
  25. // private members
  26. std::string m_ipAddress;
  27. int m_port;
  28. MessageReceivedHandler MessageReceived;
  29. };