Merge pull request #250 from Salanto/cf-websocket

Detect Proxyserver when a websocket connects
This commit is contained in:
Rosemary Witchaven 2022-03-20 19:31:38 -05:00 committed by GitHub
commit 76b6c2cfa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 3 deletions

View File

@ -44,8 +44,7 @@ public:
* @pre This class will not connect up the ports to each other in any way. Unless some setup is done, this class
* by default will never be prompted to read and/or write from/to either of the sockets.
*/
WSClient(QTcpSocket* p_tcp_socket, QWebSocket* p_web_socket, QObject* parent = nullptr)
: QObject(parent), tcp_socket(p_tcp_socket), web_socket(p_web_socket) {};
WSClient(QTcpSocket* p_tcp_socket, QWebSocket* p_web_socket, QObject* parent = nullptr);
/**
* @brief Destructor for the WSClient class.
@ -114,6 +113,11 @@ private:
* @brief Flag that is set when packets are segmented
*/
bool is_segmented = false;
/**
* @brief The IP send in the WSIP packet
*/
QString websocket_ip;
};
#endif // WS_CLIENT_H

View File

@ -1,3 +1,20 @@
//////////////////////////////////////////////////////////////////////////////////////
// akashi - a server for Attorney Online 2 //
// Copyright (C) 2020 scatterflower //
// //
// This program is free software: you can redistribute it and/or modify //
// it under the terms of the GNU Affero General Public License as //
// published by the Free Software Foundation, either version 3 of the //
// License, or (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU Affero General Public License for more details. //
// //
// You should have received a copy of the GNU Affero General Public License //
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
//////////////////////////////////////////////////////////////////////////////////////
#include "include/advertiser.h"
Advertiser::Advertiser()

View File

@ -61,10 +61,25 @@ void WSClient::onTcpDisconnect()
void WSClient::onTcpConnect()
{
tcp_socket->write(QString("WSIP#" + web_socket->peerAddress().toString() + "#%").toUtf8());
tcp_socket->write(QString("WSIP#" + websocket_ip + "#%").toUtf8());
tcp_socket->flush();
}
WSClient::WSClient(QTcpSocket *p_tcp_socket, QWebSocket *p_web_socket, QObject *parent)
: QObject(parent),
tcp_socket(p_tcp_socket),
web_socket(p_web_socket)
{
QNetworkRequest l_request = web_socket->request();
if (l_request.hasRawHeader("x-forwarded-for")) {
websocket_ip = l_request.rawHeader("x-forwarded-for");
}
else {
websocket_ip = web_socket->peerAddress().toString();
}
qDebug() << websocket_ip;
}
WSClient::~WSClient()
{
tcp_socket->deleteLater();