fixed bug in recent udp_socket fix

This commit is contained in:
Arvid Norberg 2008-09-26 17:42:39 +00:00
parent 47c476dc0a
commit dabaff9980
1 changed files with 1 additions and 0 deletions

View File

@ -111,6 +111,7 @@ void udp_socket::on_read(udp::socket* s, error_code const& e, std::size_t bytes_
s->async_receive_from(asio::buffer(m_v6_buf, sizeof(m_v6_buf))
, m_v6_ep, boost::bind(&udp_socket::on_read, this, s, _1, _2));
++m_outstanding;
return;
}