diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-07-15 15:39:25 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-07-15 15:39:25 +0200 |
commit | 11a31db2d5bcc158bb8902e74f192dbc82827f53 (patch) | |
tree | 045aa047a7a63c80c501d9f8be30e3cb2ac95ce8 /src/network/tcp_socket_handler.hpp | |
parent | 4582f1079767f53bb6bd9b96c358ea3c641aaa96 (diff) | |
download | biboumi-11a31db2d5bcc158bb8902e74f192dbc82827f53.tar.gz biboumi-11a31db2d5bcc158bb8902e74f192dbc82827f53.tar.bz2 biboumi-11a31db2d5bcc158bb8902e74f192dbc82827f53.tar.xz biboumi-11a31db2d5bcc158bb8902e74f192dbc82827f53.zip |
Send the reason of the connection close to the user
Diffstat (limited to 'src/network/tcp_socket_handler.hpp')
-rw-r--r-- | src/network/tcp_socket_handler.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/tcp_socket_handler.hpp b/src/network/tcp_socket_handler.hpp index 8416690..876cd57 100644 --- a/src/network/tcp_socket_handler.hpp +++ b/src/network/tcp_socket_handler.hpp @@ -96,7 +96,7 @@ public: /** * Called when we detect a disconnection from the remote host. */ - virtual void on_connection_close() = 0; + virtual void on_connection_close(const std::string& error) = 0; /** * Handle/consume (some of) the data received so far. The data to handle * may be in the in_buf buffer, or somewhere else, depending on what |