From 9896feb1ab3e34ad4851160ee1a9be7b3a2171ff Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sun, 13 Jun 2021 21:07:38 -0500 Subject: [PATCH] Fix localhost being used for webAO IPIDs this was really dumb of me --- core/src/packets.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/packets.cpp b/core/src/packets.cpp index 392b3dc..f2512d1 100644 --- a/core/src/packets.cpp +++ b/core/src/packets.cpp @@ -316,18 +316,18 @@ void AOClient::pktWebSocketIp(AreaData* area, int argc, QStringList argv, AOPack { // Special packet to set remote IP from the webao proxy // Only valid if from a local ip - calculateIpid(); 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); if (ban.first) { sendPacket("BD", {ban.second}); socket->close(); return; } -#ifdef NET_DEBUG - qDebug() << "ws ip set to" << argv[0]; -#endif - remote_ip = QHostAddress(argv[0]); int multiclient_count = 0; for (AOClient* joined_client : server->clients) {