Add hwid to logconnectionattempt
This commit is contained in:
parent
16fd57e591
commit
bc5ec9fa9d
@ -75,6 +75,15 @@ class AOClient : public QObject {
|
||||
*/
|
||||
QString getIpid() const;
|
||||
|
||||
/**
|
||||
* @brief Getter for the client's HWID.
|
||||
*
|
||||
* @return The HWID.
|
||||
*
|
||||
* @see #hwid
|
||||
*/
|
||||
QString getHwid() const;
|
||||
|
||||
/**
|
||||
* @brief Calculates the client's IPID based on a hashed version of its IP.
|
||||
*/
|
||||
|
@ -90,7 +90,7 @@ public slots:
|
||||
/**
|
||||
* @brief Logs any connection attempt to the server, wether sucessful or not.
|
||||
*/
|
||||
void logConnectionAttempt(const QString &f_ip_address, const QString &f_ipid);
|
||||
void logConnectionAttempt(const QString& f_ip_address, const QString& f_ipid, const QString& f_hwid);
|
||||
|
||||
private:
|
||||
|
||||
|
@ -284,7 +284,7 @@ class Server : public QObject {
|
||||
* @param f_ipid The IPID of the incoming connection.
|
||||
* @param f_hdid The HDID of the incoming connection.
|
||||
*/
|
||||
void logConnectionAttempt(const QString& f_ip_address, const QString& f_ipid);
|
||||
void logConnectionAttempt(const QString& f_ip_address, const QString& f_ipid, const QString& f_hwid);
|
||||
|
||||
private:
|
||||
/**
|
||||
|
@ -342,6 +342,8 @@ bool AOClient::checkAuth(unsigned long long acl_mask)
|
||||
|
||||
QString AOClient::getIpid() const { return ipid; }
|
||||
|
||||
QString AOClient::getHwid() const { return hwid; }
|
||||
|
||||
Server* AOClient::getServer() { return server; }
|
||||
|
||||
void AOClient::onAfkTimeout()
|
||||
|
@ -131,11 +131,11 @@ void ULogger::logModcall(const QString &f_charName, const QString &f_ipid, const
|
||||
}
|
||||
}
|
||||
|
||||
void ULogger::logConnectionAttempt(const QString& f_ip_address, const QString& f_ipid)
|
||||
void ULogger::logConnectionAttempt(const QString& f_ip_address, const QString& f_ipid, const QString& f_hwid)
|
||||
{
|
||||
QString l_time = QDateTime::currentDateTime().toString("ddd MMMM d yyyy | hh:mm:ss");
|
||||
QString l_logEntry = QStringLiteral("[%1][CONNECT][%2][%3]\n")
|
||||
.arg(l_time, f_ip_address, f_ipid);
|
||||
.arg(l_time, f_ip_address, f_ipid, f_hwid);
|
||||
updateAreaBuffer("SERVER",l_logEntry);
|
||||
}
|
||||
|
||||
|
@ -43,6 +43,7 @@ void AOClient::pktHardwareId(AreaData* area, int argc, QStringList argv, AOPacke
|
||||
return;
|
||||
}
|
||||
sendPacket("ID", {QString::number(id), "akashi", QCoreApplication::applicationVersion()});
|
||||
emit server->logConnectionAttempt(remote_ip.toString(), ipid, hwid);
|
||||
}
|
||||
|
||||
void AOClient::pktSoftwareId(AreaData* area, int argc, QStringList argv, AOPacket packet)
|
||||
|
@ -174,7 +174,6 @@ void Server::clientConnected()
|
||||
// completely in any client 2.4.3 or newer
|
||||
client->sendPacket(decryptor);
|
||||
hookupLogger(client);
|
||||
emit logConnectionAttempt(client->remote_ip.toString(), client->getIpid());
|
||||
#ifdef NET_DEBUG
|
||||
qDebug() << client->remote_ip.toString() << "connected";
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user