main.cpp 472 B

12345678910111213141516171819202122
  1. #include <iostream>
  2. #include <string>
  3. #include "headers/socket_listener.h"
  4. /** \mainpage
  5. * SocketListener constructor takes 2 parameters (std::string ip, int port).
  6. *
  7. * Calling the "run()" method will cause it to for and handle multiple
  8. * concurrent socket connections.
  9. */
  10. int main(int argc, char** argv) {
  11. SocketListener server("0.0.0.0", 9009);
  12. if (server.init()) {
  13. std::cout << "Running message loop" << std::endl;
  14. server.run();
  15. }
  16. return 0;
  17. }