diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-02-09 20:11:44 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-02-09 20:11:44 (GMT) |
commit | a7eacf1c5c425f45746c1d9bd2c9f9a3f696584a (patch) | |
tree | c4cf25c20bf68489ecff1ab019058d745c0ac105 /Swiften/Network/BoostConnection.cpp | |
parent | a853ebfbe378f7e3f44e4898b7dbe0db3e954938 (diff) | |
download | swift-contrib-a7eacf1c5c425f45746c1d9bd2c9f9a3f696584a.zip swift-contrib-a7eacf1c5c425f45746c1d9bd2c9f9a3f696584a.tar.bz2 |
Treat 'connection closed' as an error.
Diffstat (limited to 'Swiften/Network/BoostConnection.cpp')
-rw-r--r-- | Swiften/Network/BoostConnection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Network/BoostConnection.cpp b/Swiften/Network/BoostConnection.cpp index 908585d..3f33cfc 100644 --- a/Swiften/Network/BoostConnection.cpp +++ b/Swiften/Network/BoostConnection.cpp @@ -114,7 +114,7 @@ void BoostConnection::handleSocketRead(const boost::system::error_code& error, s eventLoop->postEvent(boost::bind(boost::ref(onDataRead), ByteArray(&readBuffer_[0], bytesTransferred)), shared_from_this()); doRead(); } - else if (error == boost::asio::error::eof || error == boost::asio::error::operation_aborted) { + else if (/*error == boost::asio::error::eof ||*/ error == boost::asio::error::operation_aborted) { eventLoop->postEvent(boost::bind(boost::ref(onDisconnected), boost::optional<Error>()), shared_from_this()); } else { @@ -127,7 +127,7 @@ void BoostConnection::handleDataWritten(const boost::system::error_code& error) if (!error) { eventLoop->postEvent(boost::ref(onDataWritten), shared_from_this()); } - else if (error == boost::asio::error::eof || error == boost::asio::error::operation_aborted) { + else if (/*error == boost::asio::error::eof || */error == boost::asio::error::operation_aborted) { eventLoop->postEvent(boost::bind(boost::ref(onDisconnected), boost::optional<Error>()), shared_from_this()); } else { |