1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-25 23:21:33 +03:00

resolved: add RFC 8375 "home.arpa" to list of default NTA

RFC 8375 introduced "home.arpa" as special TLD for home networks. Let's
hence add it to our default list of NTAs.
This commit is contained in:
Lennart Poettering 2021-04-10 14:58:54 +02:00 committed by Luca Boccassi
parent a8fd92b5a3
commit 1065501406

View File

@ -160,7 +160,10 @@ static int dns_trust_anchor_add_builtin_negative(DnsTrustAnchor *d) {
"lan\0"
"intranet\0"
"internal\0"
"private\0";
"private\0"
/* Defined by RFC 8375. The most official choice. */
"home.arpa\0";
const char *name;
int r;