diff options
Diffstat (limited to 'src/resolve/resolved-dns-cache.h')
-rw-r--r-- | src/resolve/resolved-dns-cache.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/resolve/resolved-dns-cache.h b/src/resolve/resolved-dns-cache.h index 6f5bf45a38..590cf691b3 100644 --- a/src/resolve/resolved-dns-cache.h +++ b/src/resolve/resolved-dns-cache.h @@ -28,8 +28,6 @@ #include "time-util.h" #include "list.h" -typedef struct DnsCacheItem DnsCacheItem; - typedef struct DnsCache { Hashmap *by_key; Prioq *by_expiry; @@ -39,21 +37,6 @@ typedef struct DnsCache { #include "resolved-dns-question.h" #include "resolved-dns-answer.h" -typedef enum DnsCacheItemType { - DNS_CACHE_POSITIVE, - DNS_CACHE_NODATA, - DNS_CACHE_NXDOMAIN, -} DnsCacheItemType; - -typedef struct DnsCacheItem { - DnsResourceKey *key; - DnsResourceRecord *rr; - usec_t until; - DnsCacheItemType type; - unsigned prioq_idx; - LIST_FIELDS(DnsCacheItem, by_key); -} DnsCacheItem; - void dns_cache_flush(DnsCache *c); void dns_cache_prune(DnsCache *c); |