summaryrefslogtreecommitdiff
path: root/server/include
diff options
context:
space:
mode:
Diffstat (limited to 'server/include')
-rw-r--r--server/include/modules_handler.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/include/modules_handler.h b/server/include/modules_handler.h
index efcbebc..2459d9c 100644
--- a/server/include/modules_handler.h
+++ b/server/include/modules_handler.h
@@ -30,11 +30,12 @@ class modules_handler
{
public:
modules_handler();
- std::string list_modules();
+ std::string list_modules(short verbose_level = 0);
~modules_handler();
private:
void load_metadata_modules(const std::string &path);
void load_downloader_modules(const std::string &path);
+ void sync_module_settings(module_base *m);
std::string get_self_path();
std::string self_path;
std::list<module_metadata_storage*> metadata_modules;