get ms advertiser properly working
This commit is contained in:
parent
7e45d372e3
commit
3379557457
@ -6,12 +6,21 @@
|
|||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QTcpSocket>
|
#include <QTcpSocket>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
|
#include <QHostAddress>
|
||||||
|
|
||||||
class Advertiser : public QObject{
|
class Advertiser : public QObject{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port, QString p_name, QString p_description);
|
Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port, QString p_name, QString p_description);
|
||||||
void contactMasterServer();
|
void contactMasterServer();
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void readData();
|
||||||
|
void socketConnected();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QString ip;
|
QString ip;
|
||||||
int port;
|
int port;
|
||||||
@ -20,7 +29,7 @@ private:
|
|||||||
QString name;
|
QString name;
|
||||||
QString description;
|
QString description;
|
||||||
|
|
||||||
void readData();
|
QTcpSocket *socket;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // MASTER_H
|
#endif // MASTER_H
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include "include/advertiser.h"
|
#include "include/advertiser.h"
|
||||||
|
|
||||||
Advertiser::Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port, QString p_name, QString p_description){
|
Advertiser::Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port, QString p_name, QString p_description)
|
||||||
|
{
|
||||||
ip = p_ip;
|
ip = p_ip;
|
||||||
port = p_port;
|
port = p_port;
|
||||||
ws_port = p_ws_port;
|
ws_port = p_ws_port;
|
||||||
@ -10,6 +11,25 @@ Advertiser::Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Advertiser::contactMasterServer() {
|
void Advertiser::contactMasterServer() {
|
||||||
|
socket = new QTcpSocket(this);
|
||||||
|
connect(socket, SIGNAL(readyRead()), this, SLOT(readData()));
|
||||||
|
connect(socket, SIGNAL(connected()), this, SLOT(socketConnected()));
|
||||||
|
|
||||||
|
socket->connectToHost(ip, port);
|
||||||
|
|
||||||
|
if(socket->waitForConnected(1000)) {
|
||||||
|
qDebug("Connected to master server");
|
||||||
|
} else {
|
||||||
|
qDebug() << "Master server socket error: " << socket->errorString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Advertiser::readData() {
|
||||||
|
// The master server should never really send data back to us
|
||||||
|
// But we handle it anyways, just in case this ever ends up being implemented
|
||||||
|
}
|
||||||
|
|
||||||
|
void Advertiser::socketConnected() {
|
||||||
QString concat_ports;
|
QString concat_ports;
|
||||||
if(ws_port == -1)
|
if(ws_port == -1)
|
||||||
concat_ports = QString::number(local_port);
|
concat_ports = QString::number(local_port);
|
||||||
@ -19,17 +39,7 @@ void Advertiser::contactMasterServer() {
|
|||||||
QString ao_packet = PacketManager::buildPacket("SCC", {concat_ports, name, description, "akashi v" + QApplication::applicationVersion()});
|
QString ao_packet = PacketManager::buildPacket("SCC", {concat_ports, name, description, "akashi v" + QApplication::applicationVersion()});
|
||||||
QByteArray data = ao_packet.toUtf8();
|
QByteArray data = ao_packet.toUtf8();
|
||||||
|
|
||||||
QTcpSocket socket(this);
|
socket->write(data);
|
||||||
connect(&socket, SIGNAL(readyRead()), SLOT(readData()));
|
socket->flush();
|
||||||
|
qDebug("Advertisement sent to master server");
|
||||||
socket.connectToHost(ip, port);
|
|
||||||
if(socket.waitForConnected()){
|
|
||||||
socket.write(data);
|
|
||||||
qDebug() << "Advertisement sent to master server";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void Advertiser::readData() {
|
|
||||||
// The master server should never really send data back to us
|
|
||||||
// But we handle it anyways, just in case this ever ends up being implemented
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user