updated boost on windows
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
// ip/tcp.hpp
|
||||
// ~~~~~~~~~~
|
||||
//
|
||||
// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
||||
// Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
||||
//
|
||||
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
@@ -100,7 +100,7 @@ public:
|
||||
* @par Examples
|
||||
* Setting the option:
|
||||
* @code
|
||||
* boost::asio::ip::tcp::socket socket(io_service);
|
||||
* boost::asio::ip::tcp::socket socket(my_context);
|
||||
* ...
|
||||
* boost::asio::ip::tcp::no_delay option(true);
|
||||
* socket.set_option(option);
|
||||
@@ -109,7 +109,7 @@ public:
|
||||
* @par
|
||||
* Getting the current option value:
|
||||
* @code
|
||||
* boost::asio::ip::tcp::socket socket(io_service);
|
||||
* boost::asio::ip::tcp::socket socket(my_context);
|
||||
* ...
|
||||
* boost::asio::ip::tcp::no_delay option;
|
||||
* socket.get_option(option);
|
||||
|
||||
Reference in New Issue
Block a user