mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-17 01:25:50 +00:00
Update version number to 0.13.0-rc2
This commit is contained in:
@@ -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");
|
||||
|
||||
@@ -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:
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user