summaryrefslogtreecommitdiffhomepage
path: root/proto-ftn
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-11-04 19:15:54 +0100
committerStanislaw Halik <sthalik@misaki.pl>2016-11-04 19:48:11 +0100
commitb89699c7551f768bf4ff47820543f8c7b8c794af (patch)
treec3a21ec23a40250ec54b97fe17b9035a932cfaf8 /proto-ftn
parent068e0c7d432ede0a388fe1478b5146fcf1809315 (diff)
modules: make names unique
Diffstat (limited to 'proto-ftn')
-rw-r--r--proto-ftn/ftnoir_protocol_ftn.cpp8
-rw-r--r--proto-ftn/ftnoir_protocol_ftn.h6
2 files changed, 7 insertions, 7 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)
diff --git a/proto-ftn/ftnoir_protocol_ftn.h b/proto-ftn/ftnoir_protocol_ftn.h
index 74120b87..28abf204 100644
--- a/proto-ftn/ftnoir_protocol_ftn.h
+++ b/proto-ftn/ftnoir_protocol_ftn.h
@@ -31,10 +31,10 @@ struct settings : opts {
{}
};
-class FTNoIR_Protocol : public IProtocol
+class udp : public IProtocol
{
public:
- FTNoIR_Protocol();
+ udp();
bool correct();
void pose(const double *headpose);
QString game_name() {
@@ -61,7 +61,7 @@ private slots:
void doCancel();
};
-class FTNoIR_ProtocolDll : public Metadata
+class udpDll : public Metadata
{
public:
QString name() { return QString("UDP receiver"); }