We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f0386 commit 07bfbe8Copy full SHA for 07bfbe8
src/resolver_impl.cpp
@@ -203,7 +203,7 @@ void resolver_impl::next_resolve_wave() {
203
204
void resolver_impl::udp_multicast_burst() {
205
// start one per IP stack under consideration
206
- int failures = 0;
+ unsigned int failures = 0;
207
for (auto protocol: udp_protocols_) {
208
try {
209
std::make_shared<resolve_attempt_udp>(
@@ -222,7 +222,7 @@ void resolver_impl::udp_multicast_burst() {
222
void resolver_impl::udp_unicast_burst(err_t err) {
223
if (err == asio::error::operation_aborted) return;
224
225
226
227
228
0 commit comments