Fix doxygen generation in tutorial.

This commit is contained in:
Christopher Kohlhoff 2019-07-09 00:22:08 +10:00
parent ebefe37003
commit 6b53692806
2 changed files with 23 additions and 1 deletions

View File

@ -1640,23 +1640,45 @@ Wait for a client to initiate contact with us. The remote\_endpoint object will
``''''''`` for (;;)
``''''''`` {
``''''''`` boost::array<char, 1> recv_buf;
``''''''`` udp::endpoint remote_endpoint;
``''''''`` asio::error_code error;
``''''''`` socket.receive_from(asio::buffer(recv_buf), remote_endpoint);
Determine what we are going to send back to the client.
``''''''`` std::string message = make_daytime_string();
Send the response to the remote\_endpoint.
``''''''`` asio::error_code ignored_error;
``''''''`` socket.send_to(asio::buffer(message),
``''''''`` remote_endpoint, 0, ignored_error);
``''''''`` }
``''''''`` }
Finally, handle any exceptions.
``''''''`` catch (std::exception& e)
``''''''`` {
``''''''`` std::cerr << e.what() << std::endl;
``''''''`` }
``''''''`` return 0;
``''''''``}

View File

@ -326,7 +326,7 @@ Create an asio::ip::udp::socket object to receive requests on UDP port 13.
Wait for a client to initiate contact with us. The remote_endpoint object will
be populated by asio::ip::udp::socket::receive_from().
\until throw
\until receive_from
Determine what we are going to send back to the client.