1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 #pragma once 3 4 #include "resolved-dns-answer.h" 5 #include "resolved-dns-question.h" 6 #include "resolved-manager.h" 7 8 int dns_synthesize_ifindex(int ifindex); 9 int dns_synthesize_family(uint64_t flags); 10 DnsProtocol dns_synthesize_protocol(uint64_t flags); 11 12 int dns_synthesize_answer(Manager *m, DnsQuestion *q, int ifindex, DnsAnswer **ret); 13