summaryrefslogtreecommitdiff
path: root/src/caches/dcache-internal.h
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2023-12-21 09:44:02 +0000
committerLaurent Bercot <ska@appnovation.com>2023-12-21 09:44:02 +0000
commit071535f5d7aa811647ed359fab431c17c9c5e2a0 (patch)
treeec1e670f772805b47e3892c5cba7294414ee2f13 /src/caches/dcache-internal.h
parentb30b381737525c88ae8623258d63f793dbdca08f (diff)
downloads6-dns-071535f5d7aa811647ed359fab431c17c9c5e2a0.tar.xz
Remove unused caches/ subdir
dcache is moved to shibari. Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/caches/dcache-internal.h')
-rw-r--r--src/caches/dcache-internal.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/caches/dcache-internal.h b/src/caches/dcache-internal.h
deleted file mode 100644
index 4fdfa4c..0000000
--- a/src/caches/dcache-internal.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/* ISC license. */
-
-#ifndef S6DNS_DCACHE_INTERNAL_H
-#define S6DNS_DCACHE_INTERNAL_H
-
-#include <stdint.h>
-
-#include <skalibs/avlnode.h>
-#include <skalibs/gensetdyn.h>
-
-#include <s6-dns/dcache.h>
-
-#define DNODE(z, i) GENSETDYN_P(dcache_node_t, &(z)->storage, i)
-#define DCACHE_NODE_OVERHEAD (32 + sizeof(dcache_node_t) + 3 * sizeof(avlnode))
-
-extern void dcache_delete (dcache_t *, uint32_t) ;
-
-#endif