Revert "More robust secure socket error handling #4313"

This reverts commit 40fa58de8c.
This commit is contained in:
Nick Bolton 2015-03-04 11:43:52 +00:00
parent 1c2576b8d7
commit 719e8f6b56
2 changed files with 63 additions and 63 deletions

View file

@ -58,9 +58,10 @@ private:
bool secureAccept(int s);
bool secureConnect(int s);
void showCertificate();
bool checkResult(int n, bool canThrow);
bool checkResult(int n);
void showError();
void throwError(const char* reason);
String getError();
bool getError();
ISocketMultiplexerJob*
serviceConnect(ISocketMultiplexerJob*,
@ -73,4 +74,5 @@ private:
private:
Ssl* m_ssl;
bool m_secureReady;
char* m_error;
};