summaryrefslogtreecommitdiff
path: root/src/network
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2014-06-22 23:56:51 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-06-22 23:56:51 +0200
commit7b785cf552b69163c8e3ccc2dd3e05176d88e18b (patch)
tree4c9101964c80c7b50eb21a5a58d1e631517e19d9 /src/network
parent545ab11ff3a334b242ba2d7fc87e2b6ba0185cb5 (diff)
downloadbiboumi-7b785cf552b69163c8e3ccc2dd3e05176d88e18b.tar.gz
biboumi-7b785cf552b69163c8e3ccc2dd3e05176d88e18b.tar.bz2
biboumi-7b785cf552b69163c8e3ccc2dd3e05176d88e18b.tar.xz
biboumi-7b785cf552b69163c8e3ccc2dd3e05176d88e18b.zip
Delete the timeout event using the correct socket number, instead of -1
Was causing the event to not be removed in case of connection failure, which lead to a dangling timed event named “timeout-1”, which was called later, by some other SocketHandler for which even the socket creation failed (so, its socket is -1), with a pointer to the previous SocketHandler which has disappeared for a long time: segmentation fault etc.
Diffstat (limited to 'src/network')
-rw-r--r--src/network/socket_handler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/socket_handler.cpp b/src/network/socket_handler.cpp
index 43a63f0..52297e4 100644
--- a/src/network/socket_handler.cpp
+++ b/src/network/socket_handler.cpp
@@ -276,6 +276,8 @@ void SocketHandler::on_send()
void SocketHandler::close()
{
+ TimedEventsManager::instance().cancel("connection_timeout"s +
+ std::to_string(this->socket));
if (this->connected || this->connecting)
this->poller->remove_socket_handler(this->get_socket());
if (this->socket != -1)
@@ -288,8 +290,6 @@ void SocketHandler::close()
this->in_buf.clear();
this->out_buf.clear();
this->port.clear();
- TimedEventsManager::instance().cancel("connection_timeout"s +
- std::to_string(this->socket));
}
socket_t SocketHandler::get_socket() const