]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved-dns-scope.h
resolved: add a DNS client stub resolver
[thirdparty/systemd.git] / src / resolve / resolved-dns-scope.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 #include "list.h"
25
26 typedef struct DnsScope DnsScope;
27
28 #include "resolved.h"
29 #include "resolved-link.h"
30 #include "resolved-dns-server.h"
31 #include "resolved-dns-packet.h"
32 #include "resolved-dns-query.h"
33
34 typedef enum DnsScopeType {
35 DNS_SCOPE_DNS,
36 DNS_SCOPE_MDNS,
37 } DnsScopeType;
38
39 typedef enum DnsScopeMatch {
40 DNS_SCOPE_NO,
41 DNS_SCOPE_MAYBE,
42 DNS_SCOPE_YES,
43 _DNS_SCOPE_MATCH_MAX,
44 _DNS_SCOPE_INVALID = -1
45 } DnsScopeMatch;
46
47 struct DnsScope {
48 Manager *manager;
49
50 DnsScopeType type;
51 unsigned char family;
52
53 Link *link;
54
55 char **domains;
56
57 LIST_HEAD(DnsQueryTransaction, transactions);
58
59 LIST_FIELDS(DnsScope, scopes);
60 };
61
62 int dns_scope_new(Manager *m, DnsScope **ret, DnsScopeType t);
63 DnsScope* dns_scope_free(DnsScope *s);
64
65 int dns_scope_send(DnsScope *s, DnsPacket *p);
66 DnsScopeMatch dns_scope_test(DnsScope *s, const char *domain);
67
68 DnsServer *dns_scope_get_server(DnsScope *s);
69 void dns_scope_next_dns_server(DnsScope *s);