You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was suprised to see dns.c reach out to my dns server to ask about 'localhost'.
rfc6761:
6.3. Domain Name Reservation Considerations for "localhost."
...
Name resolution APIs and libraries SHOULD recognize localhost
names as special and SHOULD always return the IP loopback address
for address queries and negative responses for all other query
types. Name resolution APIs SHOULD NOT send queries for
localhost names to their configured caching DNS server(s).
I tracked this down to be due to /etc/hosts not containing a 'localhost' entry: dns.c needs to treat localhost specially.
The text was updated successfully, but these errors were encountered:
I was suprised to see dns.c reach out to my dns server to ask about 'localhost'.
rfc6761:
...
I tracked this down to be due to /etc/hosts not containing a 'localhost' entry: dns.c needs to treat localhost specially.
The text was updated successfully, but these errors were encountered: