diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-12-09 21:45:53 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-12-09 21:45:53 (GMT) |
commit | 53e476d1c202119ddc87102208103675e47f9e43 (patch) | |
tree | 8d882982020fe515d8abc941c9c9ee2112e8cb1b /Swift/Controllers | |
parent | 9bcba37ce570e0ca839cf3489fd9e34b3b5d44c8 (diff) | |
download | swift-contrib-53e476d1c202119ddc87102208103675e47f9e43.zip swift-contrib-53e476d1c202119ddc87102208103675e47f9e43.tar.bz2 |
Handle stream errors in client session.
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/MainController.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Swift/Controllers/MainController.cpp b/Swift/Controllers/MainController.cpp index 878ed9b..018948b 100644 --- a/Swift/Controllers/MainController.cpp +++ b/Swift/Controllers/MainController.cpp @@ -423,6 +423,7 @@ void MainController::handleDisconnected(const boost::optional<ClientError>& erro case ClientError::UnexpectedElementError: message = "Unexpected response"; break; case ClientError::ResourceBindError: message = "Error binding resource"; break; case ClientError::SessionStartError: message = "Error starting session"; break; + case ClientError::StreamError: message = "Stream error"; break; case ClientError::TLSError: message = "Encryption error"; break; case ClientError::ClientCertificateLoadError: message = "Error loading certificate (Invalid password?)"; break; case ClientError::ClientCertificateError: message = "Certificate not authorized"; break; |