]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/resolve-util.c
resolve: rename PrivateDNS to DNSOverTLS
[thirdparty/systemd.git] / src / shared / resolve-util.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
af49ca27
LP
2/***
3 This file is part of systemd.
4
5 Copyright 2016 Lennart Poettering
af49ca27
LP
6***/
7
8#include "conf-parser.h"
9#include "resolve-util.h"
10#include "string-table.h"
11
12DEFINE_CONFIG_PARSE_ENUM(config_parse_resolve_support, resolve_support, ResolveSupport, "Failed to parse resolve support setting");
ad6c0475 13DEFINE_CONFIG_PARSE_ENUM(config_parse_dnssec_mode, dnssec_mode, DnssecMode, "Failed to parse DNSSEC mode setting");
c9299be2 14DEFINE_CONFIG_PARSE_ENUM(config_parse_dns_over_tls_mode, dns_over_tls_mode, DnsOverTlsMode, "Failed to parse DNS-over-TLS mode setting");
af49ca27
LP
15
16static const char* const resolve_support_table[_RESOLVE_SUPPORT_MAX] = {
17 [RESOLVE_SUPPORT_NO] = "no",
18 [RESOLVE_SUPPORT_YES] = "yes",
19 [RESOLVE_SUPPORT_RESOLVE] = "resolve",
20};
21DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(resolve_support, ResolveSupport, RESOLVE_SUPPORT_YES);
ad6c0475
LP
22
23static const char* const dnssec_mode_table[_DNSSEC_MODE_MAX] = {
24 [DNSSEC_NO] = "no",
25 [DNSSEC_ALLOW_DOWNGRADE] = "allow-downgrade",
26 [DNSSEC_YES] = "yes",
27};
28DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(dnssec_mode, DnssecMode, DNSSEC_YES);
5d67a7ae 29
c9299be2
IT
30static const char* const dns_over_tls_mode_table[_DNS_OVER_TLS_MODE_MAX] = {
31 [DNS_OVER_TLS_NO] = "no",
32 [DNS_OVER_TLS_OPPORTUNISTIC] = "opportunistic",
5d67a7ae 33};
c9299be2 34DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(dns_over_tls_mode, DnsOverTlsMode, _DNS_OVER_TLS_MODE_INVALID);