package for 0.3.0 release

This commit is contained in:
Peter Thorson
2014-08-09 14:06:22 -05:00
parent ad2932bbff
commit e203dbed45
16 changed files with 27 additions and 25 deletions

View File

@@ -204,7 +204,7 @@ namespace status {
/**
* See https://tools.ietf.org/html/rfc6455#section-7.4 for more details.
*
* @since 0.4.0-beta1
* @since 0.3.0
*
* @param [in] code The code to look up.
* @return A human readable interpretation of the code.

View File

@@ -223,7 +223,7 @@ struct core {
*
* The default is 32MB
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
static const size_t max_message_size = 32000000;

View File

@@ -232,7 +232,7 @@ struct core_client {
*
* The default is 32MB
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
static const size_t max_message_size = 32000000;

View File

@@ -224,7 +224,7 @@ struct debug_core {
*
* The default is 32MB
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
static const size_t max_message_size = 32000000;

View File

@@ -538,7 +538,7 @@ public:
*
* The default is set by the endpoint that creates the connection.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
size_t get_max_message_size() const {
return m_max_message_size;
@@ -552,7 +552,7 @@ public:
*
* The default is set by the endpoint that creates the connection.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param new_value The value to set as the maximum message size.
*/

View File

@@ -357,7 +357,7 @@ public:
*
* The default is set by the max_message_size value from the template config
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
size_t get_max_message_size() const {
return m_max_message_size;
@@ -371,7 +371,7 @@ public:
*
* The default is set by the max_message_size value from the template config
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param new_value The value to set as the maximum message size.
*/

View File

@@ -177,7 +177,7 @@ public:
*
* The default is retrieved from the max_message_size value from the template config
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
size_t get_max_message_size() const {
return m_max_message_size;
@@ -190,7 +190,7 @@ public:
*
* The default is retrieved from the max_message_size value from the template config
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param new_value The value to set as the maximum message size.
*/

View File

@@ -116,7 +116,7 @@ public:
* established but before any additional wrappers (proxy connects, TLS
* handshakes, etc) have been performed.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param h The handler to call on tcp pre init.
*/
@@ -145,7 +145,7 @@ public:
* etc have been performed. This is fired before any bytes are read or any
* WebSocket specific handshake logic has been performed.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param h The handler to call on tcp post init.
*/

View File

@@ -231,7 +231,7 @@ public:
* established but before any additional wrappers (proxy connects, TLS
* handshakes, etc) have been performed.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param h The handler to call on tcp pre init.
*/
@@ -260,7 +260,7 @@ public:
* etc have been performed. This is fired before any bytes are read or any
* WebSocket specific handshake logic has been performed.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param h The handler to call on tcp post init.
*/
@@ -283,7 +283,7 @@ public:
* A value of zero will use the operating system default. This is the
* default value.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param backlog The maximum length of the queue of pending connections
*/
@@ -301,7 +301,7 @@ public:
*
* The default is false.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*
* @param value Whether or not to use the SO_REUSEADDR option
*/
@@ -604,7 +604,7 @@ public:
* called either before the endpoint has run out of work or before it was
* started
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
void start_perpetual() {
m_work.reset(new boost::asio::io_service::work(*m_io_service));
@@ -616,7 +616,7 @@ public:
* method to exit normally when it runs out of connections. If there are
* currently active connections it will not end until they are complete.
*
* @since 0.4.0-alpha1
* @since 0.3.0
*/
void stop_perpetual() {
m_work.reset();

View File

@@ -242,7 +242,7 @@ protected:
* not presently provide any additional information so all errors will be
* reported as the generic transport pass_through error.
*
* @since 0.4.0-beta1
* @since 0.3.0
*
* @param ec The error code to translate_ec
* @return The translated error code

View File

@@ -298,7 +298,7 @@ protected:
* Non-TLS related errors are returned as the transport generic pass_through
* error.
*
* @since 0.4.0-beta1
* @since 0.3.0
*
* @param ec The error code to translate_ec
* @return The translated error code

View File

@@ -159,7 +159,7 @@ public:
* it doesn't it indicates that the connection was most likely closed or
* is in an error state where it is no longer accepting new input.
*
* @since 0.4.0-beta1
* @since 0.3.0
*
* @param buf Char buffer to read into the websocket
* @param len Length of buf

View File

@@ -50,10 +50,10 @@ static int const patch_version = 0;
* This is a textual flag indicating the type and number for pre-release
* versions (dev, alpha, beta, rc). This will be blank for release versions.
*/
static char const prerelease_flag[] = "alpha4";
static char const prerelease_flag[] = "";
/// Default user agent string
static char const user_agent[] = "WebSocket++/0.3.0-alpha4";
static char const user_agent[] = "WebSocket++/0.3.0";
} // namespace websocketpp