Fix localhost being used for webAO IPIDs
this was really dumb of me
This commit is contained in:
parent
a561d3eb47
commit
9896feb1ab
@ -316,18 +316,18 @@ void AOClient::pktWebSocketIp(AreaData* area, int argc, QStringList argv, AOPack
|
|||||||
{
|
{
|
||||||
// Special packet to set remote IP from the webao proxy
|
// Special packet to set remote IP from the webao proxy
|
||||||
// Only valid if from a local ip
|
// Only valid if from a local ip
|
||||||
calculateIpid();
|
|
||||||
if (remote_ip.isLoopback()) {
|
if (remote_ip.isLoopback()) {
|
||||||
|
#ifdef NET_DEBUG
|
||||||
|
qDebug() << "ws ip set to" << argv[0];
|
||||||
|
#endif
|
||||||
|
remote_ip = QHostAddress(argv[0]);
|
||||||
|
calculateIpid();
|
||||||
auto ban = server->db_manager->isIPBanned(ipid);
|
auto ban = server->db_manager->isIPBanned(ipid);
|
||||||
if (ban.first) {
|
if (ban.first) {
|
||||||
sendPacket("BD", {ban.second});
|
sendPacket("BD", {ban.second});
|
||||||
socket->close();
|
socket->close();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#ifdef NET_DEBUG
|
|
||||||
qDebug() << "ws ip set to" << argv[0];
|
|
||||||
#endif
|
|
||||||
remote_ip = QHostAddress(argv[0]);
|
|
||||||
|
|
||||||
int multiclient_count = 0;
|
int multiclient_count = 0;
|
||||||
for (AOClient* joined_client : server->clients) {
|
for (AOClient* joined_client : server->clients) {
|
||||||
|
Loading…
Reference in New Issue
Block a user