bbk/src/examples/011_echoclient/echoclient.cpp
2025-10-13 10:38:50 +02:00

14 lines
323 B
C++

#include <framework/eventloop.h>
#include "echoclienttask.h"
/* Example 011
Write a few messages to an echo server, check the result.
Make sure the server from example 010 is running while you run this client.
*/
int main(int , char *[]) {
EventLoop::runTask(new EchoClientTask("127.0.0.1", 1400));
return 0;
}