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
|
||||
// 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) {
|
||||
|
Loading…
Reference in New Issue
Block a user