summaryrefslogtreecommitdiffhomepage
path: root/proto-udp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-01-26 09:55:19 +0100
committerStanislaw Halik <sthalik@misaki.pl>2018-01-26 09:56:09 +0100
commitfb14a8c250ae7c0b38676241a46eabbf433f4195 (patch)
tree05905b51fed6afb7b94b9b880234e02a73b6e103 /proto-udp
parent38030b253da02e04c9b55d21a94eb3d70c905074 (diff)
{proto,tracker}-udp: fix misguided SO_REUSEADDR
Diffstat (limited to 'proto-udp')
-rw-r--r--proto-udp/ftnoir_protocol_ftn.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/proto-udp/ftnoir_protocol_ftn.cpp b/proto-udp/ftnoir_protocol_ftn.cpp
index a4a924b1..4e846114 100644
--- a/proto-udp/ftnoir_protocol_ftn.cpp
+++ b/proto-udp/ftnoir_protocol_ftn.cpp
@@ -15,7 +15,10 @@
udp::udp()
{
set_dest_address();
- QObject::connect(s.b.get(), &bundle_::changed, this, &udp::set_dest_address);
+
+ QObject::connect(s.b.get(), &bundle_::changed,
+ this, &udp::set_dest_address,
+ Qt::QueuedConnection);
}
void udp::pose(const double *headpose) {
@@ -33,7 +36,7 @@ void udp::set_dest_address()
module_status udp::initialize()
{
- if (outSocket.bind(QHostAddress::Any, 0, QUdpSocket::ShareAddress | QUdpSocket::ReuseAddressHint))
+ if (outSocket.bind(QHostAddress::Any, 0, QUdpSocket::DontShareAddress))
return status_ok();
else
return error(tr("Can't bind socket: %1").arg(outSocket.errorString()));