TcpListener.h 800 B

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