~singpolyma/biboumi

6e30f0c1941712a788dc13f516dc9a0f1e273cb5 — louiz’ 5 years ago 224eb92
Add an error message for udns error DNS_E_NODATA

In cases where the DNS server does not respond “domain not found” but
“domain found, but no IP for that record type”, we just say “domain not
found” too (instead of nothing, previously).
1 files changed, 1 insertions(+), 0 deletions(-)

M src/network/resolver.cpp
M src/network/resolver.cpp => src/network/resolver.cpp +1 -0
@@ 21,6 21,7 @@ static std::map<int, std::string> dns_error_messages {
    {DNS_E_TEMPFAIL, "Timeout while contacting DNS servers"},
    {DNS_E_PROTOCOL, "Misformatted DNS reply"},
    {DNS_E_NXDOMAIN, "Domain name not found"},
    {DNS_E_NODATA, "Domain name not found"},
    {DNS_E_NOMEM, "Out of memory"},
    {DNS_E_BADQUERY, "Misformatted domain name"}
};