summaryrefslogtreecommitdiff
path: root/doc/html/boost_asio/reference/socket_base
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/boost_asio/reference/socket_base')
-rw-r--r--doc/html/boost_asio/reference/socket_base/_socket_base.html2
-rw-r--r--doc/html/boost_asio/reference/socket_base/broadcast.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/bytes_readable.html4
-rw-r--r--doc/html/boost_asio/reference/socket_base/debug.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/do_not_route.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/enable_connection_aborted.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/keep_alive.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/linger.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/max_connections.html2
-rw-r--r--doc/html/boost_asio/reference/socket_base/max_listen_connections.html2
-rw-r--r--doc/html/boost_asio/reference/socket_base/message_do_not_route.html2
-rw-r--r--doc/html/boost_asio/reference/socket_base/message_end_of_record.html2
-rw-r--r--doc/html/boost_asio/reference/socket_base/message_flags.html2
-rw-r--r--doc/html/boost_asio/reference/socket_base/message_out_of_band.html2
-rw-r--r--doc/html/boost_asio/reference/socket_base/message_peek.html2
-rw-r--r--doc/html/boost_asio/reference/socket_base/out_of_band_inline.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/receive_buffer_size.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/receive_low_watermark.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/reuse_address.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/send_buffer_size.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/send_low_watermark.html6
-rw-r--r--doc/html/boost_asio/reference/socket_base/shutdown_type.html2
-rw-r--r--doc/html/boost_asio/reference/socket_base/wait_type.html2
23 files changed, 48 insertions, 48 deletions
diff --git a/doc/html/boost_asio/reference/socket_base/_socket_base.html b/doc/html/boost_asio/reference/socket_base/_socket_base.html
index f1bc9813d0..b35049db7e 100644
--- a/doc/html/boost_asio/reference/socket_base/_socket_base.html
+++ b/doc/html/boost_asio/reference/socket_base/_socket_base.html
@@ -36,7 +36,7 @@ Protected
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/broadcast.html b/doc/html/boost_asio/reference/socket_base/broadcast.html
index c1d5536b10..9da4b88847 100644
--- a/doc/html/boost_asio/reference/socket_base/broadcast.html
+++ b/doc/html/boost_asio/reference/socket_base/broadcast.html
@@ -43,7 +43,7 @@ Socket option
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::udp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::udp::socket socket(my_context);
...
boost::asio::socket_base::broadcast option(true);
socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::udp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::udp::socket socket(my_context);
...
boost::asio::socket_base::broadcast option;
socket.get_option(option);
@@ -70,7 +70,7 @@ bool is_set = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/bytes_readable.html b/doc/html/boost_asio/reference/socket_base/bytes_readable.html
index dd23273c6e..8c44924d62 100644
--- a/doc/html/boost_asio/reference/socket_base/bytes_readable.html
+++ b/doc/html/boost_asio/reference/socket_base/bytes_readable.html
@@ -40,7 +40,7 @@ IO
<a name="boost_asio.reference.socket_base.bytes_readable.h0"></a>
<span class="phrase"><a name="boost_asio.reference.socket_base.bytes_readable.example"></a></span><a class="link" href="bytes_readable.html#boost_asio.reference.socket_base.bytes_readable.example">Example</a>
</h6>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::bytes_readable command(true);
socket.io_control(command);
@@ -59,7 +59,7 @@ std::size_t bytes_readable = command.get();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/debug.html b/doc/html/boost_asio/reference/socket_base/debug.html
index d63ad56528..e93ccec6d2 100644
--- a/doc/html/boost_asio/reference/socket_base/debug.html
+++ b/doc/html/boost_asio/reference/socket_base/debug.html
@@ -43,7 +43,7 @@ Socket option to
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::debug option(true);
socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::debug option;
socket.get_option(option);
@@ -70,7 +70,7 @@ bool is_set = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/do_not_route.html b/doc/html/boost_asio/reference/socket_base/do_not_route.html
index 5b7fbf713b..da56564d75 100644
--- a/doc/html/boost_asio/reference/socket_base/do_not_route.html
+++ b/doc/html/boost_asio/reference/socket_base/do_not_route.html
@@ -43,7 +43,7 @@ Socket
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::udp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::udp::socket socket(my_context);
...
boost::asio::socket_base::do_not_route option(true);
socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::udp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::udp::socket socket(my_context);
...
boost::asio::socket_base::do_not_route option;
socket.get_option(option);
@@ -70,7 +70,7 @@ bool is_set = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/enable_connection_aborted.html b/doc/html/boost_asio/reference/socket_base/enable_connection_aborted.html
index 035e5b9e59..fc9d156377 100644
--- a/doc/html/boost_asio/reference/socket_base/enable_connection_aborted.html
+++ b/doc/html/boost_asio/reference/socket_base/enable_connection_aborted.html
@@ -45,7 +45,7 @@ Socket
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::acceptor acceptor(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::acceptor acceptor(my_context);
...
boost::asio::socket_base::enable_connection_aborted option(true);
acceptor.set_option(option);
@@ -53,7 +53,7 @@ acceptor.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::acceptor acceptor(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::acceptor acceptor(my_context);
...
boost::asio::socket_base::enable_connection_aborted option;
acceptor.get_option(option);
@@ -72,7 +72,7 @@ bool is_set = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/keep_alive.html b/doc/html/boost_asio/reference/socket_base/keep_alive.html
index fc9a70c3fe..65d740c7f6 100644
--- a/doc/html/boost_asio/reference/socket_base/keep_alive.html
+++ b/doc/html/boost_asio/reference/socket_base/keep_alive.html
@@ -43,7 +43,7 @@ Socket
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::keep_alive option(true);
socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::keep_alive option;
socket.get_option(option);
@@ -70,7 +70,7 @@ bool is_set = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/linger.html b/doc/html/boost_asio/reference/socket_base/linger.html
index c688fe601e..e52fef041c 100644
--- a/doc/html/boost_asio/reference/socket_base/linger.html
+++ b/doc/html/boost_asio/reference/socket_base/linger.html
@@ -43,7 +43,7 @@ Socket option to
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::linger option(true, 30);
socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::linger option;
socket.get_option(option);
@@ -71,7 +71,7 @@ unsigned short timeout = option.timeout();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/max_connections.html b/doc/html/boost_asio/reference/socket_base/max_connections.html
index ae3937d015..884c011627 100644
--- a/doc/html/boost_asio/reference/socket_base/max_connections.html
+++ b/doc/html/boost_asio/reference/socket_base/max_connections.html
@@ -37,7 +37,7 @@
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/max_listen_connections.html b/doc/html/boost_asio/reference/socket_base/max_listen_connections.html
index a75b048059..9a1fe5bf43 100644
--- a/doc/html/boost_asio/reference/socket_base/max_listen_connections.html
+++ b/doc/html/boost_asio/reference/socket_base/max_listen_connections.html
@@ -36,7 +36,7 @@ The
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/message_do_not_route.html b/doc/html/boost_asio/reference/socket_base/message_do_not_route.html
index cc9674ec7d..98f1fddd42 100644
--- a/doc/html/boost_asio/reference/socket_base/message_do_not_route.html
+++ b/doc/html/boost_asio/reference/socket_base/message_do_not_route.html
@@ -36,7 +36,7 @@ Specify
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/message_end_of_record.html b/doc/html/boost_asio/reference/socket_base/message_end_of_record.html
index a69fb969ae..b7321edc5b 100644
--- a/doc/html/boost_asio/reference/socket_base/message_end_of_record.html
+++ b/doc/html/boost_asio/reference/socket_base/message_end_of_record.html
@@ -36,7 +36,7 @@ Specifies
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/message_flags.html b/doc/html/boost_asio/reference/socket_base/message_flags.html
index b9fceefea0..2399b0bbf0 100644
--- a/doc/html/boost_asio/reference/socket_base/message_flags.html
+++ b/doc/html/boost_asio/reference/socket_base/message_flags.html
@@ -46,7 +46,7 @@ Bitmask
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/message_out_of_band.html b/doc/html/boost_asio/reference/socket_base/message_out_of_band.html
index 73518b7884..f24cf348ae 100644
--- a/doc/html/boost_asio/reference/socket_base/message_out_of_band.html
+++ b/doc/html/boost_asio/reference/socket_base/message_out_of_band.html
@@ -36,7 +36,7 @@ Process
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/message_peek.html b/doc/html/boost_asio/reference/socket_base/message_peek.html
index f1134fd827..ed71df5618 100644
--- a/doc/html/boost_asio/reference/socket_base/message_peek.html
+++ b/doc/html/boost_asio/reference/socket_base/message_peek.html
@@ -36,7 +36,7 @@ Peek
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
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
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">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);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">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();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/receive_buffer_size.html b/doc/html/boost_asio/reference/socket_base/receive_buffer_size.html
index 211c7d0f67..cf47570518 100644
--- a/doc/html/boost_asio/reference/socket_base/receive_buffer_size.html
+++ b/doc/html/boost_asio/reference/socket_base/receive_buffer_size.html
@@ -43,7 +43,7 @@ Socket
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::receive_buffer_size option(8192);
socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::receive_buffer_size option;
socket.get_option(option);
@@ -70,7 +70,7 @@ int size = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/receive_low_watermark.html b/doc/html/boost_asio/reference/socket_base/receive_low_watermark.html
index a48b011292..897fdb52de 100644
--- a/doc/html/boost_asio/reference/socket_base/receive_low_watermark.html
+++ b/doc/html/boost_asio/reference/socket_base/receive_low_watermark.html
@@ -43,7 +43,7 @@ Socket
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::receive_low_watermark option(1024);
socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::receive_low_watermark option;
socket.get_option(option);
@@ -70,7 +70,7 @@ int size = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/reuse_address.html b/doc/html/boost_asio/reference/socket_base/reuse_address.html
index f28a9d07db..eacb758329 100644
--- a/doc/html/boost_asio/reference/socket_base/reuse_address.html
+++ b/doc/html/boost_asio/reference/socket_base/reuse_address.html
@@ -44,7 +44,7 @@ Socket
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::acceptor acceptor(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::acceptor acceptor(my_context);
...
boost::asio::socket_base::reuse_address option(true);
acceptor.set_option(option);
@@ -52,7 +52,7 @@ acceptor.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::acceptor acceptor(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::acceptor acceptor(my_context);
...
boost::asio::socket_base::reuse_address option;
acceptor.get_option(option);
@@ -71,7 +71,7 @@ bool is_set = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/send_buffer_size.html b/doc/html/boost_asio/reference/socket_base/send_buffer_size.html
index 1a2d7ab292..d3e89e1f80 100644
--- a/doc/html/boost_asio/reference/socket_base/send_buffer_size.html
+++ b/doc/html/boost_asio/reference/socket_base/send_buffer_size.html
@@ -43,7 +43,7 @@ Socket
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::send_buffer_size option(8192);
socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::send_buffer_size option;
socket.get_option(option);
@@ -70,7 +70,7 @@ int size = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/send_low_watermark.html b/doc/html/boost_asio/reference/socket_base/send_low_watermark.html
index e97d3929ad..77bac3f23e 100644
--- a/doc/html/boost_asio/reference/socket_base/send_low_watermark.html
+++ b/doc/html/boost_asio/reference/socket_base/send_low_watermark.html
@@ -43,7 +43,7 @@ Socket
<p>
Setting the option:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::send_low_watermark option(1024);
socket.set_option(option);
@@ -51,7 +51,7 @@ socket.set_option(option);
<p>
Getting the current option value:
</p>
-<pre class="programlisting">boost::asio::ip::tcp::socket socket(io_context);
+<pre class="programlisting">boost::asio::ip::tcp::socket socket(my_context);
...
boost::asio::socket_base::send_low_watermark option;
socket.get_option(option);
@@ -70,7 +70,7 @@ int size = option.value();
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/shutdown_type.html b/doc/html/boost_asio/reference/socket_base/shutdown_type.html
index 7973a51d7f..d2dd7ea5e1 100644
--- a/doc/html/boost_asio/reference/socket_base/shutdown_type.html
+++ b/doc/html/boost_asio/reference/socket_base/shutdown_type.html
@@ -62,7 +62,7 @@ Different
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
diff --git a/doc/html/boost_asio/reference/socket_base/wait_type.html b/doc/html/boost_asio/reference/socket_base/wait_type.html
index b9002429b4..c81b53eff3 100644
--- a/doc/html/boost_asio/reference/socket_base/wait_type.html
+++ b/doc/html/boost_asio/reference/socket_base/wait_type.html
@@ -64,7 +64,7 @@ Wait types.
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
-<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 Christopher M. Kohlhoff<p>
+<td align="right"><div class="copyright-footer">Copyright &#169; 2003-2019 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>