aboutsummaryrefslogtreecommitdiff
path: root/src/cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache.h')
-rw-r--r--src/cache.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/cache.h b/src/cache.h
index 833e4394..72ed2196 100644
--- a/src/cache.h
+++ b/src/cache.h
@@ -37,23 +37,23 @@ extern "C" {
typedef struct CacheClient CacheClient_t;
-/*
+/**
* Callback type for cache clients
*/
typedef void (*CA_Callback_t)(int Op, CacheClient_t *Client);
-/*
+/**
* Data structure for cache clients.
*/
struct CacheClient {
- int Key; /* Primary Key for this client */
- const DilloUrl *Url; /* Pointer to a cache entry Url */
- int Version; /* Dicache version of this Url (0 if not used) */
- void *Buf; /* Pointer to cache-data */
- uint_t BufSize; /* Valid size of cache-data */
- CA_Callback_t Callback; /* Client function */
- void *CbData; /* Client function data */
- void *Web; /* Pointer to the Web structure of our client */
+ int Key; /**< Primary Key for this client */
+ const DilloUrl *Url; /**< Pointer to a cache entry Url */
+ int Version; /**< Dicache version of this Url (0 if not used) */
+ void *Buf; /**< Pointer to cache-data */
+ uint_t BufSize; /**< Valid size of cache-data */
+ CA_Callback_t Callback; /**< Client function */
+ void *CbData; /**< Client function data */
+ void *Web; /**< Pointer to the Web structure of our client */
};
/*