diff options
author | Andrei Pavel <andrei.pavel@qualitance.com> | 2017-08-17 19:54:15 +0200 |
---|---|---|
committer | Andrei Pavel <andrei.pavel@qualitance.com> | 2017-08-17 19:54:15 +0200 |
commit | a8f6403d1b44f62ebb3dd3085e401b46767003a0 (patch) | |
tree | 00df52bd413b27ed04097164021251f8e8ec6c80 /src/lib/asiodns/io_fetch.cc | |
parent | Removed duplicate include (diff) | |
parent | [master] Added ChangeLog 1288 for trac 5315. (diff) | |
download | kea-a8f6403d1b44f62ebb3dd3085e401b46767003a0.tar.xz kea-a8f6403d1b44f62ebb3dd3085e401b46767003a0.zip |
Merge branch 'isc-master' into config-h
Diffstat (limited to 'src/lib/asiodns/io_fetch.cc')
-rw-r--r-- | src/lib/asiodns/io_fetch.cc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/lib/asiodns/io_fetch.cc b/src/lib/asiodns/io_fetch.cc index 571c54fae8..a836871aa0 100644 --- a/src/lib/asiodns/io_fetch.cc +++ b/src/lib/asiodns/io_fetch.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2016 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2011-2017 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this @@ -232,7 +232,11 @@ IOFetch::operator()(boost::system::error_code ec, size_t length) { if (data_->stopped) { return; - } else if (ec) { + + // On Debian it has been often observed that boost::asio async + // operations result in EINPROGRESS. This doesn't necessarily + // indicate an issue. Thus, we continue as if no error occurred. + } else if (ec && (ec.value() != boost::asio::error::in_progress)) { logIOFailure(ec); return; } @@ -293,7 +297,7 @@ IOFetch::operator()(boost::system::error_code ec, size_t length) { // So... we need to loop until we have at least two bytes, then store // the expected amount of data. Then we need to loop until we have // received all the data before copying it back to the user's buffer. - // And we want to minimise the amount of copying... + // And we want to minimize the amount of copying... data_->origin = ASIODNS_READ_DATA; data_->cumulative = 0; // No data yet received |