Commit 650fea17 authored by Lorenz Meier's avatar Lorenz Meier

FlightGear link: Fix similar issue as in #1600

parent ea6f3bea
......@@ -90,7 +90,7 @@ void QGCFlightGearLink::run()
_udpCommSocket = new QUdpSocket(this);
Q_CHECK_PTR(_udpCommSocket);
_udpCommSocket->moveToThread(this);
_udpCommSocket->bind(host, port);
_udpCommSocket->bind(host, port, QAbstractSocket::ReuseAddressHint);
QObject::connect(_udpCommSocket, SIGNAL(readyRead()), this, SLOT(readBytes()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment