summaryrefslogtreecommitdiffstats
path: root/cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/cache.h b/cache.h
new file mode 100644
index 0000000..f2014df
--- /dev/null
+++ b/cache.h
@@ -0,0 +1,22 @@
+#ifndef foocachehfoo
+#define foocachehfoo
+
+typedef enum {
+ FLX_CACHE_VALID,
+ FLX_CACHE_EXPIRY1,
+ FLX_CACHE_EXPIRY2,
+ FLX_CACHE_EXPIRY3
+
+} flxCacheEntry;
+
+typedef struct flxCacheEntry {
+ GTimeVal timestamp;
+ flxRecord rr;
+ gint interface;
+ flxAddress origin;
+
+ flxCacheEntryState state;
+
+} flxCacheEntry;
+
+#endif