]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/asio/example/cpp03/tutorial/daytime_dox.txt
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / tutorial / daytime_dox.txt
index 5ec49c67cf758143d74e8a4463824854a9d8048e..8f130a132436bb221ec38106f511fc6ac58bae41 100644 (file)
@@ -23,8 +23,8 @@ so we need the user to specify the server.
 
 \until }
 
-All programs that use asio need to have at least one boost::asio::io_context
-object.
+All programs that use asio need to have at least one I/O execution context,
+such as an boost::asio::io_context object.
 
 \until boost::asio::io_context
 
@@ -277,8 +277,6 @@ The boost::asio::ip::udp::resolver::resolve() function is guaranteed to return a
 least one endpoint in the list if it does not fail. This means it is safe to
 dereference the return value directly.
 
-\until udp::endpoint
-
 Since UDP is datagram-oriented, we will not be using a stream socket. Create an
 boost::asio::ip::udp::socket and initiate contact with the remote endpoint.