diff options
author | 2019-05-17 15:29:11 +0300 | |
---|---|---|
committer | 2019-05-17 23:42:06 +0300 | |
commit | 86b14eb4e0473360cd35163dfe2366f5c91384b3 (patch) | |
tree | c05668b90698edb2caf89fc6e8ca5e6c278af3de /src/daemon/settings_private.h | |
parent | 9c0b33eb35d93b1ac3db644dd148979afbed79a5 (diff) | |
download | usurpation-86b14eb4e0473360cd35163dfe2366f5c91384b3.tar.gz usurpation-86b14eb4e0473360cd35163dfe2366f5c91384b3.tar.bz2 usurpation-86b14eb4e0473360cd35163dfe2366f5c91384b3.zip |
daemon: semi-stub for config file handling.
The daemon now load and somewhat parses the config files. It does
not do anything else with the data yet, that's a TODO.
Signed-off-by: Paulius Ratkevičius <paulius.ratkevicius@ktu.edu>
Diffstat (limited to 'src/daemon/settings_private.h')
-rw-r--r-- | src/daemon/settings_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/daemon/settings_private.h b/src/daemon/settings_private.h index ee49145..42c1fa5 100644 --- a/src/daemon/settings_private.h +++ b/src/daemon/settings_private.h @@ -37,5 +37,7 @@ static struct settings { int test_flag(unsigned int flag); void set_flag(unsigned int flag); void unset_flag(unsigned int flag); +static int setting_readconf(const char * const path); +static int setting_handle_config_entry(const char * const entry, const char * const value); #endif /* USURPATION_SETTINGS_PRIVATE_H */ |