]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/resolved-dns-query.h
resolved: allow passing on which protocol, family and interface to look something up
[thirdparty/systemd.git] / src / resolve / resolved-dns-query.h
CommitLineData
74b2466e
LP
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#include <inttypes.h>
25
26#include "sd-bus.h"
27#include "util.h"
faa133f3 28#include "set.h"
74b2466e
LP
29
30typedef struct DnsQuery DnsQuery;
74b2466e 31
74b2466e
LP
32#include "resolved-dns-scope.h"
33#include "resolved-dns-rr.h"
faa133f3
LP
34#include "resolved-dns-question.h"
35#include "resolved-dns-answer.h"
623a4c97 36#include "resolved-dns-stream.h"
ec2c5e43 37#include "resolved-dns-transaction.h"
39d8db04 38#include "resolved-manager.h"
74b2466e
LP
39
40struct DnsQuery {
41 Manager *manager;
faa133f3 42 DnsQuestion *question;
74b2466e 43
51323288
LP
44 uint64_t flags;
45 int ifindex;
46
ec2c5e43 47 DnsTransactionState state;
faa133f3 48 unsigned n_cname_redirects;
74b2466e
LP
49
50 sd_event_source *timeout_event_source;
51
322345fd 52 /* Discovered data */
faa133f3
LP
53 DnsAnswer *answer;
54 int answer_ifindex;
51323288
LP
55 int answer_family;
56 DnsProtocol answer_protocol;
faa133f3 57 int answer_rcode;
74b2466e 58
8ba9fd9c 59 /* Bus client information */
74b2466e 60 sd_bus_message *request;
0dd25fb9 61 int request_family;
74b2466e
LP
62 const char *request_hostname;
63 union in_addr_union request_address;
64
322345fd 65 /* Completion callback */
74b2466e 66 void (*complete)(DnsQuery* q);
faa133f3
LP
67 unsigned block_ready;
68
69 Set *transactions;
74b2466e 70
82bd6ddd
LP
71 sd_bus_track *bus_track;
72
74b2466e
LP
73 LIST_FIELDS(DnsQuery, queries);
74};
75
51323288 76int dns_query_new(Manager *m, DnsQuery **q, DnsQuestion *question, int family, uint64_t flags);
74b2466e 77DnsQuery *dns_query_free(DnsQuery *q);
322345fd
LP
78
79int dns_query_go(DnsQuery *q);
faa133f3 80void dns_query_ready(DnsQuery *q);
74b2466e 81
faa133f3 82int dns_query_cname_redirect(DnsQuery *q, const char *name);
74b2466e 83
82bd6ddd
LP
84int dns_query_bus_track(DnsQuery *q, sd_bus *bus, sd_bus_message *m);
85
74b2466e 86DEFINE_TRIVIAL_CLEANUP_FUNC(DnsQuery*, dns_query_free);