123456789101112131415161718192021 |
- #include <iostream>
- #include <string>
- #include "headers/socket_listener.h"
- /** \mainpage
- * SocketListener constructor takes 2 parameters (std::string ip, int port).
- *
- * Calling the "run()" method will cause it to for and handle multiple
- * concurrent socket connections.
- */
- int main(int argc, char** argv) {
- SocketListener server(argc, argv);
- if (server.init()) {
- std::cout << "Running message loop" << std::endl;
- server.run();
- }
- return 0;
- }
|