Fix localhost being used for webAO IPIDs

this was really dumb of me
This commit is contained in:
MangosArentLiterature 2021-06-13 21:07:38 -05:00
parent a561d3eb47
commit 9896feb1ab

View File

@ -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) {