You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
388 B

#include <QCoreApplication>
#include "socket.h"
2 years ago
#include "logger.h"
int main(int argc, char* argv[])
{
QCoreApplication a(argc, argv);
Logger mylog("Hatef_Console_Log.log");
mylog.clearLog();
Logger::makeStartingLine();
//UdpSocket server;
UdpSocket client(nullptr, 5446);
//client.sayHello();
//server.sayHello();
//server.sayMsg("Msg1");
return a.exec();
}