From 76d95b9a2dcfff9df1865ffff74f0e9c32bce609 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 23 Sep 2009 15:21:40 +0200 Subject: s3:gencache: Add a "was_expired" argument to gencache_get_data_blob This is set to true if the routine returns failure due to an existing but expired entry. --- source3/include/proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include') diff --git a/source3/include/proto.h b/source3/include/proto.h index f2350e7d88..d664a26949 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -535,7 +535,7 @@ bool gencache_set(const char *keystr, const char *value, time_t timeout); bool gencache_del(const char *keystr); bool gencache_get(const char *keystr, char **valstr, time_t *timeout); bool gencache_get_data_blob(const char *keystr, DATA_BLOB *blob, - time_t *timeout); + time_t *timeout, bool *was_expired); bool gencache_stabilize(void); bool gencache_set_data_blob(const char *keystr, const DATA_BLOB *blob, time_t timeout); void gencache_iterate(void (*fn)(const char* key, const char *value, time_t timeout, void* dptr), -- cgit