improved HTTPClientSession error handling for network errors handling during sending the request

This commit is contained in:
Guenter Obiltschnig
2014-10-02 22:29:25 +02:00
parent cd67863852
commit 30e26b0d96
3 changed files with 13 additions and 1 deletions

View File

@@ -210,6 +210,13 @@ void HTTPSession::setException(const Poco::Exception& exc)
}
void HTTPSession::clearException()
{
delete _pException;
_pException = 0;
}
StreamSocket HTTPSession::detachSocket()
{
StreamSocket oldSocket(_socket);