Skip to content

Commit

Permalink
node: consider .local tld local
Browse files Browse the repository at this point in the history
  • Loading branch information
tobtoht committed Sep 19, 2024
1 parent f9c55f8 commit bff194a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/utils/nodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ struct FeatherNode {
return true;
}

if (host.endsWith(".local")) { // RFC 6762
return true;
}

QHostAddress address(host);

bool validipv4;
Expand Down

0 comments on commit bff194a

Please sign in to comment.