diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-11-04 19:15:54 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-11-04 19:48:11 +0100 |
commit | b89699c7551f768bf4ff47820543f8c7b8c794af (patch) | |
tree | c3a21ec23a40250ec54b97fe17b9035a932cfaf8 /proto-ftn/ftnoir_protocol_ftn.cpp | |
parent | 068e0c7d432ede0a388fe1478b5146fcf1809315 (diff) |
modules: make names unique
Diffstat (limited to 'proto-ftn/ftnoir_protocol_ftn.cpp')
-rw-r--r-- | proto-ftn/ftnoir_protocol_ftn.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/proto-ftn/ftnoir_protocol_ftn.cpp b/proto-ftn/ftnoir_protocol_ftn.cpp index 51db0f9d..b659e3b5 100644 --- a/proto-ftn/ftnoir_protocol_ftn.cpp +++ b/proto-ftn/ftnoir_protocol_ftn.cpp @@ -12,11 +12,11 @@ #include <QFile> #include "api/plugin-api.hpp" -FTNoIR_Protocol::FTNoIR_Protocol() +udp::udp() { } -void FTNoIR_Protocol::pose(const double *headpose) { +void udp::pose(const double *headpose) { int destPort = s.port; QHostAddress destIP(QString("%1.%2.%3.%4").arg( QString::number(static_cast<int>(s.ip1)), @@ -26,9 +26,9 @@ void FTNoIR_Protocol::pose(const double *headpose) { outSocket.writeDatagram((const char *) headpose, sizeof( double[6] ), destIP, destPort); } -bool FTNoIR_Protocol::correct() +bool udp::correct() { return outSocket.bind(QHostAddress::Any, 0, QUdpSocket::ShareAddress | QUdpSocket::ReuseAddressHint); } -OPENTRACK_DECLARE_PROTOCOL(FTNoIR_Protocol, FTNControls, FTNoIR_ProtocolDll) +OPENTRACK_DECLARE_PROTOCOL(udp, FTNControls, udpDll) |