Add ability to read forwarded-for header
This helps when the websockets are behind a proxyserver, like Cloudflare
This commit is contained in:
parent
0f6b6c3c4b
commit
b38a6e7ee9
@ -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
|
||||
|
@ -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()
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user