From bff194a2112ccbd6b2c30a2eb3143fa7323e866b Mon Sep 17 00:00:00 2001 From: tobtoht Date: Thu, 19 Sep 2024 14:01:19 +0200 Subject: [PATCH] node: consider .local tld local --- src/utils/nodes.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/utils/nodes.h b/src/utils/nodes.h index 27c28977..920fda91 100644 --- a/src/utils/nodes.h +++ b/src/utils/nodes.h @@ -78,6 +78,10 @@ struct FeatherNode { return true; } + if (host.endsWith(".local")) { // RFC 6762 + return true; + } + QHostAddress address(host); bool validipv4;