Update version number to 0.13.0-rc2

This commit is contained in:
Vinnie Falco
2013-09-25 14:42:53 -07:00
parent a655662098
commit 38ed0bee79
2 changed files with 6 additions and 9 deletions

View File

@@ -124,17 +124,14 @@ public:
void disconnect ()
{
connection_ptr ptr = m_connection.lock ();
if (ptr)
{
m_io_service.dispatch (ptr->get_strand ().wrap (boost::bind (
&WSConnectionType <endpoint_type>::handle_disconnect, m_connection)));
}
m_io_service.dispatch (ptr->get_strand ().wrap (boost::bind (
&WSConnectionType <endpoint_type>::handle_disconnect,
m_connection)));
}
void handle_disconnect()
static void handle_disconnect(weak_connection_ptr c)
{
connection_ptr ptr = m_connection.lock ();
connection_ptr ptr = c.lock ();
if (ptr)
ptr->close (websocketpp::close::status::PROTOCOL_ERROR, "overload");

View File

@@ -12,7 +12,7 @@ char const* BuildInfo::getRawVersionString ()
//
// The build version number (edit this for each release)
//
"0.13.0-rc1"
"0.13.0-rc2"
//
// Must follow the format described here:
//