This commit is contained in:
fwastring 2025-10-13 10:38:50 +02:00
commit ab9a0bd4e2
183 changed files with 20701 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#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;
}