diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-07-28 18:38:54 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-07-28 18:38:54 +0200 |
commit | 1086182d83d4c02a75f96f0184d5e8e5d3af6528 (patch) | |
tree | 16f3ad53eeebf8da3a6e48251f75f29103bf2fd8 /src/resolve/resolved-dns-question.h | |
parent | 87b46c575a14c133fbc408b56b0835f13a918b1d (diff) |
resolved: compare dns question arrays properly
Let's optimize things a bit and properly compare DNS question arrays,
instead of checking if they are mutual supersets. This also makes ANY
query handling more accurate.
Diffstat (limited to 'src/resolve/resolved-dns-question.h')
-rw-r--r-- | src/resolve/resolved-dns-question.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/resolve/resolved-dns-question.h b/src/resolve/resolved-dns-question.h index 4ba2fe9f0e..fc98677798 100644 --- a/src/resolve/resolved-dns-question.h +++ b/src/resolve/resolved-dns-question.h @@ -43,6 +43,8 @@ int dns_question_matches_rr(DnsQuestion *q, DnsResourceRecord *rr); int dns_question_matches_cname(DnsQuestion *q, DnsResourceRecord *rr); int dns_question_is_valid(DnsQuestion *q); int dns_question_is_superset(DnsQuestion *q, DnsQuestion *other); +int dns_question_contains(DnsQuestion *a, DnsResourceKey *k); +int dns_question_is_equal(DnsQuestion *a, DnsQuestion *b); int dns_question_cname_redirect(DnsQuestion *q, const char *name, DnsQuestion **ret); |