From 24edb607ef64db1ab12b3d5b9ccd3848c50780d1 Mon Sep 17 00:00:00 2001 From: Ziv Scully Date: Sun, 28 Jun 2015 12:46:51 -0700 Subject: Progress on LRU cache but still more known bugs to fix. --- include/urweb/urweb_cpp.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include/urweb/urweb_cpp.h') diff --git a/include/urweb/urweb_cpp.h b/include/urweb/urweb_cpp.h index a9d42554..3ae5b69e 100644 --- a/include/urweb/urweb_cpp.h +++ b/include/urweb/urweb_cpp.h @@ -402,4 +402,12 @@ void uw_set_remoteSock(struct uw_context *, int sock); void uw_Basis_writec(struct uw_context *, char); +// Sqlcache. + +#include "uthash.h" + +CacheValue *check(Cache *, char **); +CacheValue *store(Cache *, char **, CacheValue *); +CacheValue *flush(Cache *, char **); + #endif -- cgit v1.2.3