fix exit not exiting in standalone mode

This commit is contained in:
Proddy
2023-01-30 17:04:10 +01:00
parent 7a2038e124
commit 8f68163f90
3 changed files with 8 additions and 44 deletions

View File

@@ -44,7 +44,6 @@ class EMSESPShell : public uuid::console::Shell {
virtual std::string console_name() = 0;
static void generic_exit_context_function(Shell & shell, const std::vector<std::string> & arguments);
static void main_help_function(Shell & shell, const std::vector<std::string> & arguments);
static void main_exit_function(Shell & shell, const std::vector<std::string> & arguments);
@@ -65,9 +64,6 @@ class EMSESPShell : public uuid::console::Shell {
void end_of_transmission() override;
private:
static void main_exit_user_function(Shell & shell, const std::vector<std::string> & arguments);
static void main_exit_admin_function(Shell & shell, const std::vector<std::string> & arguments);
std::string console_hostname_;
};