comparison include/urweb/urweb_cpp.h @ 2234:2f7ed04332a0

Progress on LRU cache but still more known bugs to fix.
author Ziv Scully <ziv@mit.edu>
date Sun, 28 Jun 2015 12:46:51 -0700
parents 5709482a2afd
children 88cc0f44c940
comparison
equal deleted inserted replaced
2233:af1585e7d645 2234:2f7ed04332a0
400 int uw_remoteSock(struct uw_context *); 400 int uw_remoteSock(struct uw_context *);
401 void uw_set_remoteSock(struct uw_context *, int sock); 401 void uw_set_remoteSock(struct uw_context *, int sock);
402 402
403 void uw_Basis_writec(struct uw_context *, char); 403 void uw_Basis_writec(struct uw_context *, char);
404 404
405 // Sqlcache.
406
407 #include "uthash.h"
408
409 CacheValue *check(Cache *, char **);
410 CacheValue *store(Cache *, char **, CacheValue *);
411 CacheValue *flush(Cache *, char **);
412
405 #endif 413 #endif