|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r82288 - trunk/libs/asio/doc
From: chris_at_[hidden]
Date: 2012-12-30 17:39:31
Author: chris_kohlhoff
Date: 2012-12-30 17:39:30 EST (Sun, 30 Dec 2012)
New Revision: 82288
URL: http://svn.boost.org/trac/boost/changeset/82288
Log:
Regenerate documentation.
Text files modified:
trunk/libs/asio/doc/reference.qbk | 64 ++++++++++++++++-----------------------
1 files changed, 27 insertions(+), 37 deletions(-)
Modified: trunk/libs/asio/doc/reference.qbk
==============================================================================
--- trunk/libs/asio/doc/reference.qbk (original)
+++ trunk/libs/asio/doc/reference.qbk 2012-12-30 17:39:30 EST (Sun, 30 Dec 2012)
@@ -135,12 +135,7 @@
Implement asio\_handler\_allocate and asio\_handler\_deallocate for your own handlers to provide custom allocation for these temporary objects.
-This default implementation is simply:
-
- return ::operator new(size);
-
-
-
+The default implementation of these allocation hooks uses `operator new` and `operator delete`.
[heading Remarks]
@@ -195,12 +190,7 @@
Implement asio\_handler\_allocate and asio\_handler\_deallocate for your own handlers to provide custom allocation for the associated temporary objects.
-This default implementation is simply:
-
- ::operator delete(pointer);
-
-
-
+The default implementation of these allocation hooks uses `operator new` and `operator delete`.
@@ -5137,7 +5127,7 @@
...
boost::asio::ip::tcp::socket::keep_alive option;
socket.get_option(option);
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -5194,7 +5184,7 @@
{
// An error occurred.
}
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -12603,7 +12593,7 @@
...
boost::asio::ip::tcp::socket::keep_alive option;
socket.get_option(option);
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -12660,7 +12650,7 @@
{
// An error occurred.
}
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -18046,7 +18036,7 @@
...
boost::asio::ip::tcp::socket::keep_alive option;
socket.get_option(option);
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -18103,7 +18093,7 @@
{
// An error occurred.
}
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -25770,7 +25760,7 @@
...
boost::asio::ip::tcp::socket::keep_alive option;
socket.get_option(option);
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -25824,7 +25814,7 @@
{
// An error occurred.
}
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -34188,7 +34178,7 @@
...
boost::asio::ip::tcp::socket::keep_alive option;
socket.get_option(option);
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -34245,7 +34235,7 @@
{
// An error occurred.
}
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -39209,7 +39199,7 @@
...
boost::asio::ip::tcp::socket::keep_alive option;
socket.get_option(option);
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -39266,7 +39256,7 @@
{
// An error occurred.
}
- bool is_set = option.get();
+ bool is_set = option.value();
@@ -82770,7 +82760,7 @@
Implement various bug workarounds.
- static const int default_workarounds = implementation_defined;
+ static const long default_workarounds = implementation_defined;
@@ -83080,7 +83070,7 @@
Disable SSL v2.
- static const int no_sslv2 = implementation_defined;
+ static const long no_sslv2 = implementation_defined;
@@ -83094,7 +83084,7 @@
Disable SSL v3.
- static const int no_sslv3 = implementation_defined;
+ static const long no_sslv3 = implementation_defined;
@@ -83108,7 +83098,7 @@
Disable TLS v1.
- static const int no_tlsv1 = implementation_defined;
+ static const long no_tlsv1 = implementation_defined;
@@ -83161,7 +83151,7 @@
Bitmask type for SSL options.
- typedef int options;
+ typedef long options;
@@ -83732,7 +83722,7 @@
Always create a new key when using tmp\_dh parameters.
- static const int single_dh_use = implementation_defined;
+ static const long single_dh_use = implementation_defined;
@@ -84368,7 +84358,7 @@
Implement various bug workarounds.
- static const int default_workarounds = implementation_defined;
+ static const long default_workarounds = implementation_defined;
@@ -84506,7 +84496,7 @@
Disable SSL v2.
- static const int no_sslv2 = implementation_defined;
+ static const long no_sslv2 = implementation_defined;
@@ -84520,7 +84510,7 @@
Disable SSL v3.
- static const int no_sslv3 = implementation_defined;
+ static const long no_sslv3 = implementation_defined;
@@ -84534,7 +84524,7 @@
Disable TLS v1.
- static const int no_tlsv1 = implementation_defined;
+ static const long no_tlsv1 = implementation_defined;
@@ -84548,7 +84538,7 @@
Bitmask type for SSL options.
- typedef int options;
+ typedef long options;
@@ -84601,7 +84591,7 @@
Always create a new key when using tmp\_dh parameters.
- static const int single_dh_use = implementation_defined;
+ static const long single_dh_use = implementation_defined;
@@ -91774,7 +91764,7 @@
boost::asio::io_service & io_service);
-This constructor creates a random-access handle without opening it. The handle needs to be opened before data can be written to or or read from it.
+This constructor creates a random-access handle without opening it. The handle needs to be opened before data can be written to or read from it.
[heading Parameters]
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk