diff options
Diffstat (limited to 'agent/agent.h')
-rw-r--r-- | agent/agent.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/agent/agent.h b/agent/agent.h index e3e46abc9..6c2e7c65e 100644 --- a/agent/agent.h +++ b/agent/agent.h @@ -264,12 +264,12 @@ void agent_popup_message_stop (ctrl_t ctrl); /*-- cache.c --*/ +void initialize_module_cache (void); +void deinitialize_module_cache (void); void agent_flush_cache (void); int agent_put_cache (const char *key, cache_mode_t cache_mode, const char *data, int ttl); -const char *agent_get_cache (const char *key, cache_mode_t cache_mode, - void **cache_id); -void agent_unlock_cache_entry (void **cache_id); +char *agent_get_cache (const char *key, cache_mode_t cache_mode); /*-- pksign.c --*/ |