diff options
Diffstat (limited to 'plugins/webbox')
-rw-r--r-- | plugins/webbox/webbox.cpp | 4 | ||||
-rw-r--r-- | plugins/webbox/webbox.h | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/plugins/webbox/webbox.cpp b/plugins/webbox/webbox.cpp index 09ac7c5..de8df85 100644 --- a/plugins/webbox/webbox.cpp +++ b/plugins/webbox/webbox.cpp @@ -943,3 +943,7 @@ void webbox_plugin::registerCommand(std::shared_ptr<Command> command) m_commands[command->getCommandName()] = command; }; +bool webbox_plugin::has_own_authentication() +{ + return true; +} diff --git a/plugins/webbox/webbox.h b/plugins/webbox/webbox.h index dd2fb93..cd4e21d 100644 --- a/plugins/webbox/webbox.h +++ b/plugins/webbox/webbox.h @@ -18,12 +18,16 @@ private: public: webbox_plugin(); ~webbox_plugin(); - std::string name(); + + std::string name() override; + std::string generate_page( std::function<std::string(const std::string& key)>& GetServerParam, std::function<std::string(const std::string& key)>& GetRequestParam, // request including body (POST...) std::function<void(const std::string& key, const std::string& value)>& SetResponseHeader // to be added to result string - ); + ) override; + + bool has_own_authentication() override; }; extern "C" BOOST_SYMBOL_EXPORT webbox_plugin webserver_plugin; |