From: Lennart Poettering Date: Fri, 8 Jan 2016 16:18:54 +0000 (+0100) Subject: resolved: log why we use TCP when UDP isn't supported by a server X-Git-Tag: v231~792^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=034e8031919bac72943175c068c112d24f509793;p=platform%2Fupstream%2Fsystemd.git resolved: log why we use TCP when UDP isn't supported by a server --- diff --git a/src/resolve/resolved-dns-transaction.c b/src/resolve/resolved-dns-transaction.c index b9a1eaf..1ab9550 100644 --- a/src/resolve/resolved-dns-transaction.c +++ b/src/resolve/resolved-dns-transaction.c @@ -709,7 +709,7 @@ void dns_transaction_process_reply(DnsTransaction *t, DnsPacket *p) { if (r < 0) { /* On LLMNR, if we cannot connect to the host, * we immediately give up */ - if (t->scope->protocol == DNS_PROTOCOL_LLMNR) { + if (t->scope->protocol != DNS_PROTOCOL_DNS) { dns_transaction_complete(t, DNS_TRANSACTION_RESOURCES); return; } @@ -1280,6 +1280,8 @@ int dns_transaction_go(DnsTransaction *t) { r = dns_transaction_emit_udp(t); if (r == -EMSGSIZE) log_debug("Sending query via TCP since it is too large."); + if (r == -EAGAIN) + log_debug("Sending query via TCP since server doesn't support UDP."); if (r == -EMSGSIZE || r == -EAGAIN) r = dns_transaction_open_tcp(t); }