From 3c1df2168531ad5580076ae08d529054689aeedd Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Thu, 5 Dec 2019 15:22:41 +0900 Subject: Imported Upstream version 1.70.0 --- doc/html/boost_asio/reference/socket_base/out_of_band_inline.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/boost_asio/reference/socket_base/out_of_band_inline.html') diff --git a/doc/html/boost_asio/reference/socket_base/out_of_band_inline.html b/doc/html/boost_asio/reference/socket_base/out_of_band_inline.html index 983b4ecc8e..8a1ab6de04 100644 --- a/doc/html/boost_asio/reference/socket_base/out_of_band_inline.html +++ b/doc/html/boost_asio/reference/socket_base/out_of_band_inline.html @@ -43,7 +43,7 @@ Socket

Setting the option:

-
boost::asio::ip::tcp::socket socket(io_context);
+
boost::asio::ip::tcp::socket socket(my_context);
 ...
 boost::asio::socket_base::out_of_band_inline option(true);
 socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
 

Getting the current option value:

-
boost::asio::ip::tcp::socket socket(io_context);
+
boost::asio::ip::tcp::socket socket(my_context);
 ...
 boost::asio::socket_base::out_of_band_inline option;
 socket.get_option(option);
@@ -70,7 +70,7 @@ bool value = option.value();
 
 
-