From 59e8233e45b796330795ca326fd594fa0f4e474b Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Tue, 1 Apr 2014 01:25:14 +0200 Subject: [PATCH] listen to all interfaces --- plugins/deviceplugins/mock/httpdaemon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/deviceplugins/mock/httpdaemon.cpp b/plugins/deviceplugins/mock/httpdaemon.cpp index c078c0d2..802397f2 100644 --- a/plugins/deviceplugins/mock/httpdaemon.cpp +++ b/plugins/deviceplugins/mock/httpdaemon.cpp @@ -13,7 +13,7 @@ HttpDaemon::HttpDaemon(Device *device, DevicePlugin *parent): QTcpServer(parent), disabled(false), m_plugin(parent), m_device(device) { - listen(QHostAddress::LocalHost, device->params().value("httpport").toInt()); + listen(QHostAddress::Any, device->params().value("httpport").toInt()); } void HttpDaemon::incomingConnection(qintptr socket)