From: Jelte Jansen Date: Thu, 13 Dec 2012 22:07:00 +0000 (+0100) Subject: [2494] Add error log for async mode too X-Git-Tag: bind10-1.0.0-beta-release~21^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=259634a0145c978f78f87cf84724553473e109fc;p=thirdparty%2Fkea.git [2494] Add error log for async mode too --- diff --git a/src/lib/asiodns/asiodns_messages.mes b/src/lib/asiodns/asiodns_messages.mes index e4d0ead4f7..db2902ec65 100644 --- a/src/lib/asiodns/asiodns_messages.mes +++ b/src/lib/asiodns/asiodns_messages.mes @@ -53,17 +53,22 @@ The asynchronous I/O code encountered an error when trying to send data to the specified address on the given protocol. The number of the system error that caused the problem is given in the message. -% ASIODNS_UDP_SYNC_SEND_FAIL Error sending UDP packet to %1: %2 +% ASIODNS_UDP_ASYNC_SEND_FAIL Error sending UDP packet to %1: %2 The low-level ASIO library reported an error when trying to send a UDP -packet in synchronous UDP mode. This can be any error reported by send_to(), -and can indicate problems such as too high a load on the network, or a -problem in the underlying library or system. +packet in asynchronous UDP mode. This can be any error reported by +send_to(), and can indicate problems such as too high a load on the network, +or a problem in the underlying library or system. This packet is dropped and will not be sent, but service should resume normally. If you see a single occurrence of this message, it probably does not indicate any significant problem, but if it is logged often, it is probably a good idea to inspect your network traffic. +% ASIODNS_UDP_SYNC_SEND_FAIL Error sending UDP packet to %1: %2 +The low-level ASIO library reported an error when trying to send a UDP +packet in synchronous UDP mode. See ASIODNS_UDP_ASYNC_SEND_FAIL for +more information. + % ASIODNS_UNKNOWN_ORIGIN unknown origin for ASIO error code %1 (protocol: %2, address %3) An internal consistency check on the origin of a message from the asynchronous I/O module failed. This may indicate an internal error; diff --git a/src/lib/asiodns/udp_server.cc b/src/lib/asiodns/udp_server.cc index 8695e60083..bdf79a7325 100644 --- a/src/lib/asiodns/udp_server.cc +++ b/src/lib/asiodns/udp_server.cc @@ -304,6 +304,11 @@ UDPServer::operator()(asio::error_code ec, size_t length) { CORO_YIELD data_->socket_->async_send_to( buffer(data_->respbuf_->getData(), data_->respbuf_->getLength()), *data_->sender_, *this); + if (ec) { + LOG_ERROR(logger, ASIODNS_UDP_ASYNC_SEND_FAIL). + arg(data_->sender_->address().to_string()). + arg(ec.message()); + } } }