1 /*
2 **  Message-ID to storage token cache.
3 */
4 
5 #ifndef CACHE_H
6 #define CACHE_H 1
7 
8 #include "inn/libinn.h"
9 #include "inn/storage.h"
10 
11 BEGIN_DECLS
12 
13 void cache_add(const HASH, const TOKEN);
14 TOKEN cache_get(const HASH, bool final);
15 
16 END_DECLS
17 
18 #endif /* CACHE_H */
19