geekbrains_network_programming/lesson_01/client/udp.cpp

22 lines
232 B
C++
Raw Normal View History

2022-09-05 06:44:08 +00:00
/*
* udp.cpp
*
* Created on: 10 авг. 2022 г.
* Author: alexander
*/
#include "udp.h"
#include "client.h"
int clientUDP()
{
azh::Client client;
client.createUDP(1991);
client.start();
return 0;
}