This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-11-13 00:54:32 +01:00

14 lines
221 B
C++

#include <QCoreApplication>
#include "mqttserver.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
MqttServer server;
server.listen(QHostAddress::AnyIPv4, 1883);
return a.exec();
}