shutdown the server
This commit is contained in:
parent
46cc7ce5d8
commit
06ebe3c166
@ -29,6 +29,7 @@ const QMap<QString, AOClient::CommandInfo> AOClient::COMMANDS{
|
||||
{"getareas", {{ACLRole::NONE}, 0, &AOClient::cmdGetAreas}},
|
||||
{"ban", {{ACLRole::BAN}, 3, &AOClient::cmdBan}},
|
||||
{"kick", {{ACLRole::KICK}, 2, &AOClient::cmdKick}},
|
||||
{"shutdown", {{ACLRole::SUPER}, 0, &AOClient::cmdShutdown}},
|
||||
{"changeauth", {{ACLRole::SUPER}, 0, &AOClient::cmdChangeAuth}},
|
||||
{"rootpass", {{ACLRole::SUPER}, 1, &AOClient::cmdSetRootPass}},
|
||||
{"background", {{ACLRole::NONE}, 1, &AOClient::cmdSetBackground}},
|
||||
|
@ -1634,6 +1634,14 @@ class AOClient : public QObject
|
||||
*
|
||||
* @iscommand
|
||||
*/
|
||||
void cmdShutdown(int argc, QStringList argv);
|
||||
/**
|
||||
* @brief Shuts down the server.
|
||||
*
|
||||
* @details LOL.
|
||||
*
|
||||
* @iscommand
|
||||
*/
|
||||
void cmdShake(int argc, QStringList argv);
|
||||
|
||||
/**
|
||||
|
@ -22,10 +22,22 @@
|
||||
#include "config_manager.h"
|
||||
#include "db_manager.h"
|
||||
#include "server.h"
|
||||
#include "aoclient.h"
|
||||
#include <cstdlib>
|
||||
|
||||
|
||||
|
||||
// This file is for commands under the moderation category in aoclient.h
|
||||
// Be sure to register the command in the header before adding it here!
|
||||
|
||||
|
||||
void AOClient::cmdShutdown(int argc, QStringList argv)
|
||||
{
|
||||
Q_UNUSED(argc);
|
||||
Q_UNUSED(argv);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
void AOClient::cmdBan(int argc, QStringList argv)
|
||||
{
|
||||
QString l_args_str = argv[2];
|
||||
|
Loading…
Reference in New Issue
Block a user