diff options
Diffstat (limited to 'src/cfg_file.h')
-rw-r--r-- | src/cfg_file.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cfg_file.h b/src/cfg_file.h index c4e820997..279f35988 100644 --- a/src/cfg_file.h +++ b/src/cfg_file.h @@ -314,12 +314,17 @@ struct config_file { GList *views; /**< views */ GList *pre_filters; /**< list of pre-processing lua filters */ GList *post_filters; /**< list of post-processing lua filters */ + gchar *dynamic_conf; /**< path to dynamic configuration */ GHashTable* domain_settings; /**< settings per-domains */ GHashTable* user_settings; /**< settings per-user */ gchar* domain_settings_str; /**< string representation of settings */ gchar* user_settings_str; gint clock_res; /**< resolution of clock used */ + GList *maps; /**< maps active */ + memory_pool_t *map_pool; /**< static maps pool */ + gdouble map_timeout; /**< maps watch timeout */ + struct symbols_cache *cache; /**< symbols cache object */ gchar *cache_filename; /**< filename of cache file */ struct metric *default_metric; /**< default metric */ |