diff options
Diffstat (limited to 'libs/asio/doc')
96 files changed, 244 insertions, 129 deletions
diff --git a/libs/asio/doc/Jamfile.v2 b/libs/asio/doc/Jamfile.v2 index bde1da4f3..224c6b87a 100644 --- a/libs/asio/doc/Jamfile.v2 +++ b/libs/asio/doc/Jamfile.v2 @@ -1,5 +1,5 @@ # -# Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) +# Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/asio.qbk b/libs/asio/doc/asio.qbk index 0a20fd195..66328b548 100644 --- a/libs/asio/doc/asio.qbk +++ b/libs/asio/doc/asio.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) @@ -7,7 +7,7 @@ [library Boost.Asio [quickbook 1.4] - [copyright 2003 - 2014 Christopher M. Kohlhoff] + [copyright 2003 - 2015 Christopher M. Kohlhoff] [purpose Networking library] [license Distributed under the Boost Software License, Version 1.0. diff --git a/libs/asio/doc/doxy2qbk.pl b/libs/asio/doc/doxy2qbk.pl index 56505b782..7bac6787c 100644 --- a/libs/asio/doc/doxy2qbk.pl +++ b/libs/asio/doc/doxy2qbk.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) +# Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/examples.qbk b/libs/asio/doc/examples.qbk index df4c4f01b..0c7b1b8d1 100644 --- a/libs/asio/doc/examples.qbk +++ b/libs/asio/doc/examples.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/history.qbk b/libs/asio/doc/history.qbk index cae14f801..3d5598079 100644 --- a/libs/asio/doc/history.qbk +++ b/libs/asio/doc/history.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) @@ -7,6 +7,39 @@ [section:history Revision History] +[heading Asio 1.10.6 / Boost 1.58] + +* Ensured errors generated by Windows' `ConnectEx` function are mapped to their + portable equivalents ([ticket 10744]). +* Added new macro `BOOST_ASIO_DISABLE_CONNECTEX` to allow use of `ConnectEx` to + be explicitly disabled. +* Fixed a race condition in `windows::object_handle` when there are pending + wait operations on destruction ([ticket 10624]). +* Fixed IPv6 address parsing on FreeBSD, where a trailing scope ID would cause + conversion to fail with `EINVAL`. +* Worked around shared library visibility issues by ensuring Asio types use + default visibility ([ticket 9465], [ticket 11070]). +* Changed the SSL wrapper to call the password callback when loading an + in-memory key ([ticket 10828]). +* Fixed false SSL error reports by ensuring that the SSL error queue is cleared + prior to each operation. +* Fixed an `ssl::stream<>` bug that may result in spurious 'short read' errors. +* Removed a redundant null pointer check in the SSL engine ([ticket 10088]). +* Added options for disabling TLS v1.1 and v1.2 ([ticket 10690]). +* Removed use of deprecated OpenSSL function `ERR_remove_state`. +* Fixed detection of various C++11 features with Clang ([ticket 8835], + [ticket 10884]). +* Fixed detection of C++11 `std::addressof` with [^g++] ([ticket 10982]). +* Changed multicast test to treat certain `join_group` failures as non-fatal. +* Decoupled Asio unit tests from Boost.Test ([ticket 11116]). +* Changed the tutorial to use `std::endl` to ensure output is flushed. +* Fixed an unsigned integer overflow reported by Clang's integer sanitizer. +* Added support for move-only return types when using a `yield_context` object + with asynchronous operations. +* Changed `yield_context` to allow reentrant calls to the completion handler + from an initiating function. +* Updated detection of Windows Runtime to work with latest Windows SDK. + [heading Asio 1.10.5 / Boost 1.57] * Fixed the [^kqueue] reactor so that it works on FreeBSD ([ticket 10606]). diff --git a/libs/asio/doc/index.xml b/libs/asio/doc/index.xml index 2c22bbc88..527fa4435 100644 --- a/libs/asio/doc/index.xml +++ b/libs/asio/doc/index.xml @@ -2,7 +2,7 @@ <!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "../../../tools/boostbook/dtd/boostbook.dtd"> <!-- - Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/noncopyable_dox.txt b/libs/asio/doc/noncopyable_dox.txt index a87390405..194f7d7c8 100644 --- a/libs/asio/doc/noncopyable_dox.txt +++ b/libs/asio/doc/noncopyable_dox.txt @@ -1,5 +1,5 @@ // -// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview.qbk b/libs/asio/doc/overview.qbk index 6ec434f75..46f0cc58f 100644 --- a/libs/asio/doc/overview.qbk +++ b/libs/asio/doc/overview.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/allocation.qbk b/libs/asio/doc/overview/allocation.qbk index 0b2b4fac2..26a38aa3d 100644 --- a/libs/asio/doc/overview/allocation.qbk +++ b/libs/asio/doc/overview/allocation.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/async.qbk b/libs/asio/doc/overview/async.qbk index 0d0a0828f..fe38d5213 100644 --- a/libs/asio/doc/overview/async.qbk +++ b/libs/asio/doc/overview/async.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/basics.qbk b/libs/asio/doc/overview/basics.qbk index 80c1b1a28..e42b6753a 100644 --- a/libs/asio/doc/overview/basics.qbk +++ b/libs/asio/doc/overview/basics.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/bsd_sockets.qbk b/libs/asio/doc/overview/bsd_sockets.qbk index 0bf53c3f1..43ddc9dc8 100644 --- a/libs/asio/doc/overview/bsd_sockets.qbk +++ b/libs/asio/doc/overview/bsd_sockets.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/buffers.qbk b/libs/asio/doc/overview/buffers.qbk index 4de944060..5920eaed2 100644 --- a/libs/asio/doc/overview/buffers.qbk +++ b/libs/asio/doc/overview/buffers.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/coroutine.qbk b/libs/asio/doc/overview/coroutine.qbk index 8090a48df..5ba5e2ebb 100644 --- a/libs/asio/doc/overview/coroutine.qbk +++ b/libs/asio/doc/overview/coroutine.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/cpp2011.qbk b/libs/asio/doc/overview/cpp2011.qbk index 161e72d8d..fe116b2e7 100644 --- a/libs/asio/doc/overview/cpp2011.qbk +++ b/libs/asio/doc/overview/cpp2011.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/handler_tracking.qbk b/libs/asio/doc/overview/handler_tracking.qbk index 42f52b7ab..84c577ad4 100644 --- a/libs/asio/doc/overview/handler_tracking.qbk +++ b/libs/asio/doc/overview/handler_tracking.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/implementation.qbk b/libs/asio/doc/overview/implementation.qbk index 5ec4fa959..4586b4f01 100644 --- a/libs/asio/doc/overview/implementation.qbk +++ b/libs/asio/doc/overview/implementation.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/iostreams.qbk b/libs/asio/doc/overview/iostreams.qbk index 83c09ee3d..c6b4f440e 100644 --- a/libs/asio/doc/overview/iostreams.qbk +++ b/libs/asio/doc/overview/iostreams.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/line_based.qbk b/libs/asio/doc/overview/line_based.qbk index 37390a792..432466d29 100644 --- a/libs/asio/doc/overview/line_based.qbk +++ b/libs/asio/doc/overview/line_based.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/other_protocols.qbk b/libs/asio/doc/overview/other_protocols.qbk index 08b54d3a6..a36d39464 100644 --- a/libs/asio/doc/overview/other_protocols.qbk +++ b/libs/asio/doc/overview/other_protocols.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/posix.qbk b/libs/asio/doc/overview/posix.qbk index 2a9363660..808838d6e 100644 --- a/libs/asio/doc/overview/posix.qbk +++ b/libs/asio/doc/overview/posix.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/protocols.qbk b/libs/asio/doc/overview/protocols.qbk index 94f0d9453..ec7105ad8 100644 --- a/libs/asio/doc/overview/protocols.qbk +++ b/libs/asio/doc/overview/protocols.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/rationale.qbk b/libs/asio/doc/overview/rationale.qbk index 9efc080a7..d488bd32d 100644 --- a/libs/asio/doc/overview/rationale.qbk +++ b/libs/asio/doc/overview/rationale.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/reactor.qbk b/libs/asio/doc/overview/reactor.qbk index 950df9c16..8b401a156 100644 --- a/libs/asio/doc/overview/reactor.qbk +++ b/libs/asio/doc/overview/reactor.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/serial_ports.qbk b/libs/asio/doc/overview/serial_ports.qbk index 52016059b..1d0ba601a 100644 --- a/libs/asio/doc/overview/serial_ports.qbk +++ b/libs/asio/doc/overview/serial_ports.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/signals.qbk b/libs/asio/doc/overview/signals.qbk index 201aef8b2..993d6f3c3 100644 --- a/libs/asio/doc/overview/signals.qbk +++ b/libs/asio/doc/overview/signals.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/spawn.qbk b/libs/asio/doc/overview/spawn.qbk index 5f78a9435..7a066fdd9 100644 --- a/libs/asio/doc/overview/spawn.qbk +++ b/libs/asio/doc/overview/spawn.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/ssl.qbk b/libs/asio/doc/overview/ssl.qbk index c3df1b474..f84cffff9 100644 --- a/libs/asio/doc/overview/ssl.qbk +++ b/libs/asio/doc/overview/ssl.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/strands.qbk b/libs/asio/doc/overview/strands.qbk index 11d954fe6..ddfeec22b 100644 --- a/libs/asio/doc/overview/strands.qbk +++ b/libs/asio/doc/overview/strands.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/streams.qbk b/libs/asio/doc/overview/streams.qbk index 40dd51bc6..085dd5185 100644 --- a/libs/asio/doc/overview/streams.qbk +++ b/libs/asio/doc/overview/streams.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/threads.qbk b/libs/asio/doc/overview/threads.qbk index 1350d2f8f..0cdfb2a85 100644 --- a/libs/asio/doc/overview/threads.qbk +++ b/libs/asio/doc/overview/threads.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/timers.qbk b/libs/asio/doc/overview/timers.qbk index 6f7a297ec..516e67ea6 100644 --- a/libs/asio/doc/overview/timers.qbk +++ b/libs/asio/doc/overview/timers.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/overview/windows.qbk b/libs/asio/doc/overview/windows.qbk index 20dc153c6..c769b65a1 100644 --- a/libs/asio/doc/overview/windows.qbk +++ b/libs/asio/doc/overview/windows.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/quickref.xml b/libs/asio/doc/quickref.xml index 29459aabc..60e82cb55 100644 --- a/libs/asio/doc/quickref.xml +++ b/libs/asio/doc/quickref.xml @@ -2,7 +2,7 @@ <!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "../../../tools/boostbook/dtd/boostbook.dtd"> <!-- - Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/reference.qbk b/libs/asio/doc/reference.qbk index 9e7862bfe..27bcb46b9 100644 --- a/libs/asio/doc/reference.qbk +++ b/libs/asio/doc/reference.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) @@ -54944,6 +54944,7 @@ The time traits type. [indexterm2 no_memory..error::basic_errors] [indexterm2 no_permission..error::basic_errors] [indexterm2 no_protocol_option..error::basic_errors] +[indexterm2 no_such_device..error::basic_errors] [indexterm2 not_connected..error::basic_errors] [indexterm2 not_socket..error::basic_errors] [indexterm2 operation_aborted..error::basic_errors] @@ -55082,6 +55083,11 @@ The time traits type. ] [ + [no_such_device] + [No such device. ] + ] + + [ [not_connected] [Transport endpoint is not connected. ] ] @@ -88549,6 +88555,16 @@ This function is used to launch a new coroutine. ] [ + [[link boost_asio.reference.ssl__context.no_tlsv1_1 [*no_tlsv1_1]]] + [Disable TLS v1.1. ] + ] + + [ + [[link boost_asio.reference.ssl__context.no_tlsv1_2 [*no_tlsv1_2]]] + [Disable TLS v1.2. ] + ] + + [ [[link boost_asio.reference.ssl__context.single_dh_use [*single_dh_use]]] [Always create a new key when using tmp_dh parameters. ] ] @@ -89357,6 +89373,34 @@ Disable TLS v1. +[section:no_tlsv1_1 ssl::context::no_tlsv1_1] + +[indexterm2 no_tlsv1_1..ssl::context] +Disable TLS v1.1. + + + static const long no_tlsv1_1 = implementation_defined; + + + +[endsect] + + + +[section:no_tlsv1_2 ssl::context::no_tlsv1_2] + +[indexterm2 no_tlsv1_2..ssl::context] +Disable TLS v1.2. + + + static const long no_tlsv1_2 = implementation_defined; + + + +[endsect] + + + [section:operator_eq_ ssl::context::operator=] [indexterm2 operator=..ssl::context] @@ -91207,6 +91251,16 @@ The [link boost_asio.reference.ssl__context_base `ssl::context_base`] class is u ] [ + [[link boost_asio.reference.ssl__context_base.no_tlsv1_1 [*no_tlsv1_1]]] + [Disable TLS v1.1. ] + ] + + [ + [[link boost_asio.reference.ssl__context_base.no_tlsv1_2 [*no_tlsv1_2]]] + [Disable TLS v1.2. ] + ] + + [ [[link boost_asio.reference.ssl__context_base.single_dh_use [*single_dh_use]]] [Always create a new key when using tmp_dh parameters. ] ] @@ -91450,6 +91504,34 @@ Disable TLS v1. +[section:no_tlsv1_1 ssl::context_base::no_tlsv1_1] + +[indexterm2 no_tlsv1_1..ssl::context_base] +Disable TLS v1.1. + + + static const long no_tlsv1_1 = implementation_defined; + + + +[endsect] + + + +[section:no_tlsv1_2 ssl::context_base::no_tlsv1_2] + +[indexterm2 no_tlsv1_2..ssl::context_base] +Disable TLS v1.2. + + + static const long no_tlsv1_2 = implementation_defined; + + + +[endsect] + + + [section:options ssl::context_base::options] [indexterm2 options..ssl::context_base] diff --git a/libs/asio/doc/reference.xsl b/libs/asio/doc/reference.xsl index 745584c13..e70256bfd 100644 --- a/libs/asio/doc/reference.xsl +++ b/libs/asio/doc/reference.xsl @@ -2,7 +2,7 @@ <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <!-- - Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + Copyright (c) 2003-2015 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) @@ -26,7 +26,7 @@ --> <xsl:template match="/doxygen"> <xsl:text>[/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements.qbk b/libs/asio/doc/requirements.qbk index 0263aabd8..56948eff4 100644 --- a/libs/asio/doc/requirements.qbk +++ b/libs/asio/doc/requirements.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/AcceptHandler.qbk b/libs/asio/doc/requirements/AcceptHandler.qbk index 021e3d7f4..87c470178 100644 --- a/libs/asio/doc/requirements/AcceptHandler.qbk +++ b/libs/asio/doc/requirements/AcceptHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/AsyncRandomAccessReadDevice.qbk b/libs/asio/doc/requirements/AsyncRandomAccessReadDevice.qbk index 8279e5c9d..6b5af0a43 100644 --- a/libs/asio/doc/requirements/AsyncRandomAccessReadDevice.qbk +++ b/libs/asio/doc/requirements/AsyncRandomAccessReadDevice.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/AsyncRandomAccessWriteDevice.qbk b/libs/asio/doc/requirements/AsyncRandomAccessWriteDevice.qbk index edc2f9fd4..255363574 100644 --- a/libs/asio/doc/requirements/AsyncRandomAccessWriteDevice.qbk +++ b/libs/asio/doc/requirements/AsyncRandomAccessWriteDevice.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/AsyncReadStream.qbk b/libs/asio/doc/requirements/AsyncReadStream.qbk index cd881ae41..2bce2d2f1 100644 --- a/libs/asio/doc/requirements/AsyncReadStream.qbk +++ b/libs/asio/doc/requirements/AsyncReadStream.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/AsyncWriteStream.qbk b/libs/asio/doc/requirements/AsyncWriteStream.qbk index a61bbf234..6cc8d8308 100644 --- a/libs/asio/doc/requirements/AsyncWriteStream.qbk +++ b/libs/asio/doc/requirements/AsyncWriteStream.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/BufferedHandshakeHandler.qbk b/libs/asio/doc/requirements/BufferedHandshakeHandler.qbk index 282c39ef8..367d9fedc 100644 --- a/libs/asio/doc/requirements/BufferedHandshakeHandler.qbk +++ b/libs/asio/doc/requirements/BufferedHandshakeHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/CompletionHandler.qbk b/libs/asio/doc/requirements/CompletionHandler.qbk index 8207711b4..6e9da3d7a 100644 --- a/libs/asio/doc/requirements/CompletionHandler.qbk +++ b/libs/asio/doc/requirements/CompletionHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ComposedConnectHandler.qbk b/libs/asio/doc/requirements/ComposedConnectHandler.qbk index e3fb5a96c..b28315420 100644 --- a/libs/asio/doc/requirements/ComposedConnectHandler.qbk +++ b/libs/asio/doc/requirements/ComposedConnectHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ConnectHandler.qbk b/libs/asio/doc/requirements/ConnectHandler.qbk index 316181561..06d264410 100644 --- a/libs/asio/doc/requirements/ConnectHandler.qbk +++ b/libs/asio/doc/requirements/ConnectHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ConstBufferSequence.qbk b/libs/asio/doc/requirements/ConstBufferSequence.qbk index 4e72d12d7..7314cd0d1 100644 --- a/libs/asio/doc/requirements/ConstBufferSequence.qbk +++ b/libs/asio/doc/requirements/ConstBufferSequence.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ConvertibleToConstBuffer.qbk b/libs/asio/doc/requirements/ConvertibleToConstBuffer.qbk index 50766e67b..a81194ba4 100644 --- a/libs/asio/doc/requirements/ConvertibleToConstBuffer.qbk +++ b/libs/asio/doc/requirements/ConvertibleToConstBuffer.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ConvertibleToMutableBuffer.qbk b/libs/asio/doc/requirements/ConvertibleToMutableBuffer.qbk index 50fd7ca75..e4e6cc14a 100644 --- a/libs/asio/doc/requirements/ConvertibleToMutableBuffer.qbk +++ b/libs/asio/doc/requirements/ConvertibleToMutableBuffer.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/DatagramSocketService.qbk b/libs/asio/doc/requirements/DatagramSocketService.qbk index eadbf1202..dc4865d5e 100644 --- a/libs/asio/doc/requirements/DatagramSocketService.qbk +++ b/libs/asio/doc/requirements/DatagramSocketService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/DescriptorService.qbk b/libs/asio/doc/requirements/DescriptorService.qbk index cdb848887..abcdca9d3 100644 --- a/libs/asio/doc/requirements/DescriptorService.qbk +++ b/libs/asio/doc/requirements/DescriptorService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/Endpoint.qbk b/libs/asio/doc/requirements/Endpoint.qbk index 2249d0a77..b6ecf3102 100644 --- a/libs/asio/doc/requirements/Endpoint.qbk +++ b/libs/asio/doc/requirements/Endpoint.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/GettableSerialPortOption.qbk b/libs/asio/doc/requirements/GettableSerialPortOption.qbk index 87051dda0..212675319 100644 --- a/libs/asio/doc/requirements/GettableSerialPortOption.qbk +++ b/libs/asio/doc/requirements/GettableSerialPortOption.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/GettableSocketOption.qbk b/libs/asio/doc/requirements/GettableSocketOption.qbk index 488333ba4..795e86755 100644 --- a/libs/asio/doc/requirements/GettableSocketOption.qbk +++ b/libs/asio/doc/requirements/GettableSocketOption.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/HandleService.qbk b/libs/asio/doc/requirements/HandleService.qbk index c86041ade..18232159b 100644 --- a/libs/asio/doc/requirements/HandleService.qbk +++ b/libs/asio/doc/requirements/HandleService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/Handler.qbk b/libs/asio/doc/requirements/Handler.qbk index 247cf1acd..a2085f6a9 100644 --- a/libs/asio/doc/requirements/Handler.qbk +++ b/libs/asio/doc/requirements/Handler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/HandshakeHandler.qbk b/libs/asio/doc/requirements/HandshakeHandler.qbk index 6145ca9e0..7c78fbcf8 100644 --- a/libs/asio/doc/requirements/HandshakeHandler.qbk +++ b/libs/asio/doc/requirements/HandshakeHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/InternetProtocol.qbk b/libs/asio/doc/requirements/InternetProtocol.qbk index 28a0ccc26..53de22daf 100644 --- a/libs/asio/doc/requirements/InternetProtocol.qbk +++ b/libs/asio/doc/requirements/InternetProtocol.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/IoControlCommand.qbk b/libs/asio/doc/requirements/IoControlCommand.qbk index b6886e023..17e52ae4a 100644 --- a/libs/asio/doc/requirements/IoControlCommand.qbk +++ b/libs/asio/doc/requirements/IoControlCommand.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/IoObjectService.qbk b/libs/asio/doc/requirements/IoObjectService.qbk index 6bfbd2c21..cc39dd43e 100644 --- a/libs/asio/doc/requirements/IoObjectService.qbk +++ b/libs/asio/doc/requirements/IoObjectService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/MutableBufferSequence.qbk b/libs/asio/doc/requirements/MutableBufferSequence.qbk index 11fd16ee8..3f2e8ac1a 100644 --- a/libs/asio/doc/requirements/MutableBufferSequence.qbk +++ b/libs/asio/doc/requirements/MutableBufferSequence.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ObjectHandleService.qbk b/libs/asio/doc/requirements/ObjectHandleService.qbk index d5efcb966..1b6ca2b2d 100644 --- a/libs/asio/doc/requirements/ObjectHandleService.qbk +++ b/libs/asio/doc/requirements/ObjectHandleService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/Protocol.qbk b/libs/asio/doc/requirements/Protocol.qbk index 66a64aba0..5170936e1 100644 --- a/libs/asio/doc/requirements/Protocol.qbk +++ b/libs/asio/doc/requirements/Protocol.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/RandomAccessHandleService.qbk b/libs/asio/doc/requirements/RandomAccessHandleService.qbk index 537c75b6f..2d4e67430 100644 --- a/libs/asio/doc/requirements/RandomAccessHandleService.qbk +++ b/libs/asio/doc/requirements/RandomAccessHandleService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/RawSocketService.qbk b/libs/asio/doc/requirements/RawSocketService.qbk index f7a2704ab..a4a436387 100644 --- a/libs/asio/doc/requirements/RawSocketService.qbk +++ b/libs/asio/doc/requirements/RawSocketService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ReadHandler.qbk b/libs/asio/doc/requirements/ReadHandler.qbk index 8b57bc773..c779ec669 100644 --- a/libs/asio/doc/requirements/ReadHandler.qbk +++ b/libs/asio/doc/requirements/ReadHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ResolveHandler.qbk b/libs/asio/doc/requirements/ResolveHandler.qbk index f6e0688a4..411c0db47 100644 --- a/libs/asio/doc/requirements/ResolveHandler.qbk +++ b/libs/asio/doc/requirements/ResolveHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ResolverService.qbk b/libs/asio/doc/requirements/ResolverService.qbk index 20e1400db..3a596a202 100644 --- a/libs/asio/doc/requirements/ResolverService.qbk +++ b/libs/asio/doc/requirements/ResolverService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SeqPacketSocketService.qbk b/libs/asio/doc/requirements/SeqPacketSocketService.qbk index 1c148d7ff..df8697c16 100644 --- a/libs/asio/doc/requirements/SeqPacketSocketService.qbk +++ b/libs/asio/doc/requirements/SeqPacketSocketService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SerialPortService.qbk b/libs/asio/doc/requirements/SerialPortService.qbk index 656f27d8d..2d880631e 100644 --- a/libs/asio/doc/requirements/SerialPortService.qbk +++ b/libs/asio/doc/requirements/SerialPortService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/Service.qbk b/libs/asio/doc/requirements/Service.qbk index a14347067..7963cb368 100644 --- a/libs/asio/doc/requirements/Service.qbk +++ b/libs/asio/doc/requirements/Service.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SettableSerialPortOption.qbk b/libs/asio/doc/requirements/SettableSerialPortOption.qbk index 833182960..d217fa868 100644 --- a/libs/asio/doc/requirements/SettableSerialPortOption.qbk +++ b/libs/asio/doc/requirements/SettableSerialPortOption.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SettableSocketOption.qbk b/libs/asio/doc/requirements/SettableSocketOption.qbk index 31ab73e27..6b75472da 100644 --- a/libs/asio/doc/requirements/SettableSocketOption.qbk +++ b/libs/asio/doc/requirements/SettableSocketOption.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/ShutdownHandler.qbk b/libs/asio/doc/requirements/ShutdownHandler.qbk index 2c7f5fcd3..6426a6cdf 100644 --- a/libs/asio/doc/requirements/ShutdownHandler.qbk +++ b/libs/asio/doc/requirements/ShutdownHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SignalHandler.qbk b/libs/asio/doc/requirements/SignalHandler.qbk index 1c89f62af..987da4b8e 100644 --- a/libs/asio/doc/requirements/SignalHandler.qbk +++ b/libs/asio/doc/requirements/SignalHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SignalSetService.qbk b/libs/asio/doc/requirements/SignalSetService.qbk index 1b27dd9fe..854195c30 100644 --- a/libs/asio/doc/requirements/SignalSetService.qbk +++ b/libs/asio/doc/requirements/SignalSetService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SocketAcceptorService.qbk b/libs/asio/doc/requirements/SocketAcceptorService.qbk index a35e0d62c..04b424d09 100644 --- a/libs/asio/doc/requirements/SocketAcceptorService.qbk +++ b/libs/asio/doc/requirements/SocketAcceptorService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SocketService.qbk b/libs/asio/doc/requirements/SocketService.qbk index 2f373beaa..574b771f9 100644 --- a/libs/asio/doc/requirements/SocketService.qbk +++ b/libs/asio/doc/requirements/SocketService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/StreamDescriptorService.qbk b/libs/asio/doc/requirements/StreamDescriptorService.qbk index 23c53276c..7f878aada 100644 --- a/libs/asio/doc/requirements/StreamDescriptorService.qbk +++ b/libs/asio/doc/requirements/StreamDescriptorService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/StreamHandleService.qbk b/libs/asio/doc/requirements/StreamHandleService.qbk index 3dd1b9521..cdcac3f50 100644 --- a/libs/asio/doc/requirements/StreamHandleService.qbk +++ b/libs/asio/doc/requirements/StreamHandleService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/StreamSocketService.qbk b/libs/asio/doc/requirements/StreamSocketService.qbk index fedfdef9c..1937a2b63 100644 --- a/libs/asio/doc/requirements/StreamSocketService.qbk +++ b/libs/asio/doc/requirements/StreamSocketService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SyncRandomAccessReadDevice.qbk b/libs/asio/doc/requirements/SyncRandomAccessReadDevice.qbk index 8f601a1d9..fd44d5772 100644 --- a/libs/asio/doc/requirements/SyncRandomAccessReadDevice.qbk +++ b/libs/asio/doc/requirements/SyncRandomAccessReadDevice.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SyncRandomAccessWriteDevice.qbk b/libs/asio/doc/requirements/SyncRandomAccessWriteDevice.qbk index 439ef3c13..396d64243 100644 --- a/libs/asio/doc/requirements/SyncRandomAccessWriteDevice.qbk +++ b/libs/asio/doc/requirements/SyncRandomAccessWriteDevice.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SyncReadStream.qbk b/libs/asio/doc/requirements/SyncReadStream.qbk index 1e37d5810..2eac0f1da 100644 --- a/libs/asio/doc/requirements/SyncReadStream.qbk +++ b/libs/asio/doc/requirements/SyncReadStream.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/SyncWriteStream.qbk b/libs/asio/doc/requirements/SyncWriteStream.qbk index f38c41305..1e05f22f2 100644 --- a/libs/asio/doc/requirements/SyncWriteStream.qbk +++ b/libs/asio/doc/requirements/SyncWriteStream.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/TimeTraits.qbk b/libs/asio/doc/requirements/TimeTraits.qbk index 7c0fcd95c..6ac7fefc5 100644 --- a/libs/asio/doc/requirements/TimeTraits.qbk +++ b/libs/asio/doc/requirements/TimeTraits.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/TimerService.qbk b/libs/asio/doc/requirements/TimerService.qbk index 3b957aefc..5d84d6b70 100644 --- a/libs/asio/doc/requirements/TimerService.qbk +++ b/libs/asio/doc/requirements/TimerService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/WaitHandler.qbk b/libs/asio/doc/requirements/WaitHandler.qbk index 75033342a..1c2b8b97f 100644 --- a/libs/asio/doc/requirements/WaitHandler.qbk +++ b/libs/asio/doc/requirements/WaitHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/WaitTraits.qbk b/libs/asio/doc/requirements/WaitTraits.qbk index 19aaed1c1..b892aeb94 100644 --- a/libs/asio/doc/requirements/WaitTraits.qbk +++ b/libs/asio/doc/requirements/WaitTraits.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/WaitableTimerService.qbk b/libs/asio/doc/requirements/WaitableTimerService.qbk index 427c3dbaf..0dbf3e6a7 100644 --- a/libs/asio/doc/requirements/WaitableTimerService.qbk +++ b/libs/asio/doc/requirements/WaitableTimerService.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/WriteHandler.qbk b/libs/asio/doc/requirements/WriteHandler.qbk index 40ea07705..38094ea92 100644 --- a/libs/asio/doc/requirements/WriteHandler.qbk +++ b/libs/asio/doc/requirements/WriteHandler.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/requirements/asynchronous_operations.qbk b/libs/asio/doc/requirements/asynchronous_operations.qbk index 1293dd847..336affc81 100644 --- a/libs/asio/doc/requirements/asynchronous_operations.qbk +++ b/libs/asio/doc/requirements/asynchronous_operations.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/std_exception_dox.txt b/libs/asio/doc/std_exception_dox.txt index 74aeacc0c..57745ce5e 100644 --- a/libs/asio/doc/std_exception_dox.txt +++ b/libs/asio/doc/std_exception_dox.txt @@ -1,5 +1,5 @@ // -// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/tutorial.qbk b/libs/asio/doc/tutorial.qbk index afff0a035..77bbc840d 100644 --- a/libs/asio/doc/tutorial.qbk +++ b/libs/asio/doc/tutorial.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) @@ -120,7 +120,7 @@ Finally we print the obligatory `"Hello, world!"` message to show when the timer - ``''''''`` std::cout << "Hello, world!\n"; + ``''''''`` std::cout << "Hello, world!" << std::endl; ``''''''`` return 0; ``''''''``} @@ -142,7 +142,7 @@ Next: [link boost_asio.tutorial.tuttimer2 Timer.2 - Using a timer asynchronously ``''''''``// timer.cpp ``''''''``// ~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -159,7 +159,7 @@ Next: [link boost_asio.tutorial.tuttimer2 Timer.2 - Using a timer asynchronously ``''''''`` boost::asio::deadline_timer t(io, boost::posix_time::seconds(5)); ``''''''`` t.wait(); - ``''''''`` std::cout << "Hello, world!\n"; + ``''''''`` std::cout << "Hello, world!" << std::endl; ``''''''`` return 0; ``''''''``} @@ -191,7 +191,7 @@ Using asio's asynchronous functionality means having a callback function that wi ``''''''``void print(const boost::system::error_code& /*e*/) ``''''''``{ - ``''''''`` std::cout << "Hello, world!\n"; + ``''''''`` std::cout << "Hello, world!" << std::endl; ``''''''``} ``''''''``int main() @@ -242,7 +242,7 @@ Next: [link boost_asio.tutorial.tuttimer3 Timer.3 - Binding arguments to a handl ``''''''``// timer.cpp ``''''''``// ~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -254,7 +254,7 @@ Next: [link boost_asio.tutorial.tuttimer3 Timer.3 - Binding arguments to a handl ``''''''``void print(const boost::system::error_code& /*e*/) ``''''''``{ - ``''''''`` std::cout << "Hello, world!\n"; + ``''''''`` std::cout << "Hello, world!" << std::endl; ``''''''``} ``''''''``int main() @@ -312,7 +312,7 @@ As mentioned above, this tutorial program uses a counter to stop running when th ``''''''`` if (*count < 5) ``''''''`` { - ``''''''`` std::cout << *count << "\n"; + ``''''''`` std::cout << *count << std::endl; ``''''''`` ++(*count); @@ -366,7 +366,7 @@ Finally, just to prove that the `count` variable was being used in the `print` h - ``''''''`` std::cout << "Final count is " << count << "\n"; + ``''''''`` std::cout << "Final count is " << count << std::endl; ``''''''`` return 0; ``''''''``} @@ -390,7 +390,7 @@ Next: [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function as a ``''''''``// timer.cpp ``''''''``// ~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -406,7 +406,7 @@ Next: [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function as a ``''''''``{ ``''''''`` if (*count < 5) ``''''''`` { - ``''''''`` std::cout << *count << "\n"; + ``''''''`` std::cout << *count << std::endl; ``''''''`` ++(*count); ``''''''`` t->expires_at(t->expires_at() + boost::posix_time::seconds(1)); @@ -426,7 +426,7 @@ Next: [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function as a ``''''''`` io.run(); - ``''''''`` std::cout << "Final count is " << count << "\n"; + ``''''''`` std::cout << "Final count is " << count << std::endl; ``''''''`` return 0; ``''''''``} @@ -489,7 +489,7 @@ In the class destructor we will print out the final value of the counter. ``''''''`` ~printer() ``''''''`` { - ``''''''`` std::cout << "Final count is " << count_ << "\n"; + ``''''''`` std::cout << "Final count is " << count_ << std::endl; ``''''''`` } @@ -502,7 +502,7 @@ The `print` member function is very similar to the `print` function from tutoria ``''''''`` { ``''''''`` if (count_ < 5) ``''''''`` { - ``''''''`` std::cout << count_ << "\n"; + ``''''''`` std::cout << count_ << std::endl; ``''''''`` ++count_; ``''''''`` timer_.expires_at(timer_.expires_at() + boost::posix_time::seconds(1)); @@ -551,7 +551,7 @@ Next: [link boost_asio.tutorial.tuttimer5 Timer.5 - Synchronising handlers in mu ``''''''``// timer.cpp ``''''''``// ~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -574,14 +574,14 @@ Next: [link boost_asio.tutorial.tuttimer5 Timer.5 - Synchronising handlers in mu ``''''''`` ~printer() ``''''''`` { - ``''''''`` std::cout << "Final count is " << count_ << "\n"; + ``''''''`` std::cout << "Final count is " << count_ << std::endl; ``''''''`` } ``''''''`` void print() ``''''''`` { ``''''''`` if (count_ < 5) ``''''''`` { - ``''''''`` std::cout << count_ << "\n"; + ``''''''`` std::cout << count_ << std::endl; ``''''''`` ++count_; ``''''''`` timer_.expires_at(timer_.expires_at() + boost::posix_time::seconds(1)); @@ -673,7 +673,7 @@ When initiating the asynchronous operations, each callback handler is "wrapped" ``''''''`` ~printer() ``''''''`` { - ``''''''`` std::cout << "Final count is " << count_ << "\n"; + ``''''''`` std::cout << "Final count is " << count_ << std::endl; ``''''''`` } @@ -686,7 +686,7 @@ In a multithreaded program, the handlers for asynchronous operations should be s ``''''''`` { ``''''''`` if (count_ < 10) ``''''''`` { - ``''''''`` std::cout << "Timer 1: " << count_ << "\n"; + ``''''''`` std::cout << "Timer 1: " << count_ << std::endl; ``''''''`` ++count_; ``''''''`` timer1_.expires_at(timer1_.expires_at() + boost::posix_time::seconds(1)); @@ -698,7 +698,7 @@ In a multithreaded program, the handlers for asynchronous operations should be s ``''''''`` { ``''''''`` if (count_ < 10) ``''''''`` { - ``''''''`` std::cout << "Timer 2: " << count_ << "\n"; + ``''''''`` std::cout << "Timer 2: " << count_ << std::endl; ``''''''`` ++count_; ``''''''`` timer2_.expires_at(timer2_.expires_at() + boost::posix_time::seconds(1)); @@ -751,7 +751,7 @@ Previous: [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function ``''''''``// timer.cpp ``''''''``// ~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -778,14 +778,14 @@ Previous: [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function ``''''''`` ~printer() ``''''''`` { - ``''''''`` std::cout << "Final count is " << count_ << "\n"; + ``''''''`` std::cout << "Final count is " << count_ << std::endl; ``''''''`` } ``''''''`` void print1() ``''''''`` { ``''''''`` if (count_ < 10) ``''''''`` { - ``''''''`` std::cout << "Timer 1: " << count_ << "\n"; + ``''''''`` std::cout << "Timer 1: " << count_ << std::endl; ``''''''`` ++count_; ``''''''`` timer1_.expires_at(timer1_.expires_at() + boost::posix_time::seconds(1)); @@ -797,7 +797,7 @@ Previous: [link boost_asio.tutorial.tuttimer4 Timer.4 - Using a member function ``''''''`` { ``''''''`` if (count_ < 10) ``''''''`` { - ``''''''`` std::cout << "Timer 2: " << count_ << "\n"; + ``''''''`` std::cout << "Timer 2: " << count_ << std::endl; ``''''''`` ++count_; ``''''''`` timer2_.expires_at(timer2_.expires_at() + boost::posix_time::seconds(1)); @@ -959,7 +959,7 @@ Next: [link boost_asio.tutorial.tutdaytime2 Daytime.2 - A synchronous TCP daytim ``''''''``// client.cpp ``''''''``// ~~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -1118,7 +1118,7 @@ Next: [link boost_asio.tutorial.tutdaytime3 Daytime.3 - An asynchronous TCP dayt ``''''''``// server.cpp ``''''''``// ~~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -1370,7 +1370,7 @@ Next: [link boost_asio.tutorial.tutdaytime4 Daytime.4 - A synchronous UDP daytim ``''''''``// server.cpp ``''''''``// ~~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -1591,7 +1591,7 @@ Next: [link boost_asio.tutorial.tutdaytime5 Daytime.5 - A synchronous UDP daytim ``''''''``// client.cpp ``''''''``// ~~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -1734,7 +1734,7 @@ Next: [link boost_asio.tutorial.tutdaytime6 Daytime.6 - An asynchronous UDP dayt ``''''''``// server.cpp ``''''''``// ~~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -1952,7 +1952,7 @@ Next: [link boost_asio.tutorial.tutdaytime7 Daytime.7 - A combined TCP/UDP async ``''''''``// server.cpp ``''''''``// ~~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) @@ -2231,7 +2231,7 @@ Previous: [link boost_asio.tutorial.tutdaytime6 Daytime.6 - An asynchronous UDP ``''''''``// server.cpp ``''''''``// ~~~~~~~~~~ ``''''''``// - ``''''''``// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + ``''''''``// Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/tutorial.xsl b/libs/asio/doc/tutorial.xsl index 9a79ad530..ced26c32e 100644 --- a/libs/asio/doc/tutorial.xsl +++ b/libs/asio/doc/tutorial.xsl @@ -2,7 +2,7 @@ <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <!-- - Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + Copyright (c) 2003-2015 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) @@ -20,7 +20,7 @@ <xsl:template match="/doxygen"> <xsl:text>[/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) diff --git a/libs/asio/doc/using.qbk b/libs/asio/doc/using.qbk index 3cc7563fd..b2bfaf39b 100644 --- a/libs/asio/doc/using.qbk +++ b/libs/asio/doc/using.qbk @@ -1,5 +1,5 @@ [/ - / Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com) + / Copyright (c) 2003-2015 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) |