]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved-dns-query.h
hwdb: Update database of Bluetooth company identifiers
[thirdparty/systemd.git] / src / resolve / resolved-dns-query.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6 This file is part of systemd.
7
8 Copyright 2014 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24
25 #include "sd-bus.h"
26 #include "set.h"
27
28 typedef struct DnsQuery DnsQuery;
29
30 #include "resolved-dns-question.h"
31 #include "resolved-dns-answer.h"
32 #include "resolved-dns-stream.h"
33
34 struct DnsQuery {
35 Manager *manager;
36 DnsQuestion *question;
37
38 uint64_t flags;
39 int ifindex;
40
41 DnsTransactionState state;
42 unsigned n_cname_redirects;
43
44 sd_event_source *timeout_event_source;
45
46 /* Discovered data */
47 DnsAnswer *answer;
48 int answer_family;
49 DnsProtocol answer_protocol;
50 int answer_rcode;
51
52 /* Bus client information */
53 sd_bus_message *request;
54 int request_family;
55 const char *request_hostname;
56 union in_addr_union request_address;
57
58 /* Completion callback */
59 void (*complete)(DnsQuery* q);
60 unsigned block_ready;
61
62 Set *transactions;
63
64 sd_bus_track *bus_track;
65
66 LIST_FIELDS(DnsQuery, queries);
67 };
68
69 int dns_query_new(Manager *m, DnsQuery **q, DnsQuestion *question, int family, uint64_t flags);
70 DnsQuery *dns_query_free(DnsQuery *q);
71
72 int dns_query_go(DnsQuery *q);
73 void dns_query_ready(DnsQuery *q);
74
75 int dns_query_cname_redirect(DnsQuery *q, const char *name);
76
77 int dns_query_bus_track(DnsQuery *q, sd_bus_message *m);
78
79 DEFINE_TRIVIAL_CLEANUP_FUNC(DnsQuery*, dns_query_free);