Browse Source

XPlane link: Fix similar issue as in #1600

QGC4.4
Lorenz Meier 10 years ago
parent
commit
02dedf2e08
  1. 2
      src/comm/QGCXPlaneLink.cc

2
src/comm/QGCXPlaneLink.cc

@ -164,7 +164,7 @@ void QGCXPlaneLink::run() @@ -164,7 +164,7 @@ void QGCXPlaneLink::run()
socket = new QUdpSocket(this);
socket->moveToThread(this);
connectState = socket->bind(localHost, localPort);
connectState = socket->bind(localHost, localPort, QAbstractSocket::ReuseAddressHint);
if (!connectState) {
emit statusMessage("Binding socket failed!");

Loading…
Cancel
Save