]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-cache.h
resolved: switch cache option to a tri-state option (systemd#5552).
[thirdparty/systemd.git] / src / resolve / resolved-dns-cache.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
322345fd
LP
2#pragma once
3
322345fd 4#include "hashmap.h"
71d35b6b 5#include "list.h"
322345fd 6#include "prioq.h"
37d7a7d9 7#include "resolve-util.h"
322345fd 8#include "time-util.h"
322345fd 9
322345fd 10typedef struct DnsCache {
7e8e0422
LP
11 Hashmap *by_key;
12 Prioq *by_expiry;
a150ff5e
LP
13 unsigned n_hit;
14 unsigned n_miss;
322345fd
LP
15} DnsCache;
16
faa133f3 17#include "resolved-dns-answer.h"
7778dfff 18#include "resolved-dns-packet.h"
71d35b6b
TA
19#include "resolved-dns-question.h"
20#include "resolved-dns-rr.h"
322345fd 21
322345fd
LP
22void dns_cache_flush(DnsCache *c);
23void dns_cache_prune(DnsCache *c);
24
37d7a7d9 25int dns_cache_put(DnsCache *c, DnsCacheMode cache_mode, DnsResourceKey *key, int rcode, DnsAnswer *answer, bool authenticated, uint32_t nsec_ttl, usec_t timestamp, int owner_family, const union in_addr_union *owner_address);
17c8de63 26int dns_cache_lookup(DnsCache *c, DnsResourceKey *key, bool clamp_ttl, int *rcode, DnsAnswer **answer, bool *authenticated);
a4076574
LP
27
28int dns_cache_check_conflicts(DnsCache *cache, DnsResourceRecord *rr, int owner_family, const union in_addr_union *owner_address);
4d506d6b
LP
29
30void dns_cache_dump(DnsCache *cache, FILE *f);
31bool dns_cache_is_empty(DnsCache *cache);
7778dfff 32
a150ff5e
LP
33unsigned dns_cache_size(DnsCache *cache);
34
7778dfff 35int dns_cache_export_shared_to_packet(DnsCache *cache, DnsPacket *p);