]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-cache.h
resolved: rework parsing of /etc/hosts
[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
LP
6#include "prioq.h"
7#include "time-util.h"
322345fd 8
322345fd 9typedef struct DnsCache {
7e8e0422
LP
10 Hashmap *by_key;
11 Prioq *by_expiry;
a150ff5e
LP
12 unsigned n_hit;
13 unsigned n_miss;
322345fd
LP
14} DnsCache;
15
faa133f3 16#include "resolved-dns-answer.h"
7778dfff 17#include "resolved-dns-packet.h"
71d35b6b
TA
18#include "resolved-dns-question.h"
19#include "resolved-dns-rr.h"
322345fd 20
322345fd
LP
21void dns_cache_flush(DnsCache *c);
22void dns_cache_prune(DnsCache *c);
23
d3760be0 24int dns_cache_put(DnsCache *c, 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 25int dns_cache_lookup(DnsCache *c, DnsResourceKey *key, bool clamp_ttl, int *rcode, DnsAnswer **answer, bool *authenticated);
a4076574
LP
26
27int dns_cache_check_conflicts(DnsCache *cache, DnsResourceRecord *rr, int owner_family, const union in_addr_union *owner_address);
4d506d6b
LP
28
29void dns_cache_dump(DnsCache *cache, FILE *f);
30bool dns_cache_is_empty(DnsCache *cache);
7778dfff 31
a150ff5e
LP
32unsigned dns_cache_size(DnsCache *cache);
33
7778dfff 34int dns_cache_export_shared_to_packet(DnsCache *cache, DnsPacket *p);