summaryrefslogtreecommitdiff
path: root/include/modules
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-04-28 17:04:33 +0200
committerAttila Molnar <attilamolnar@hush.com>2016-04-28 17:04:33 +0200
commitb96329dc3b775c77e98964c42cb0def7ca65ba0e (patch)
tree5581f1412bb1f2bda55a506edae3fd35971e4929 /include/modules
parent6cfe4011ec0e90718d7d5a449a5330b8e9a18ec3 (diff)
Add SSLIOHook::IsSSL() to determine whether a socket is using SSL or not
Use it in a few places
Diffstat (limited to 'include/modules')
-rw-r--r--include/modules/ssl.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/include/modules/ssl.h b/include/modules/ssl.h
index 67bfc7b2e..adc78e324 100644
--- a/include/modules/ssl.h
+++ b/include/modules/ssl.h
@@ -164,6 +164,14 @@ class SSLIOHook : public IOHook
}
public:
+ static SSLIOHook* IsSSL(StreamSocket* sock)
+ {
+ IOHook* const iohook = sock->GetIOHook();
+ if ((iohook) && ((iohook->prov->type == IOHookProvider::IOH_SSL)))
+ return static_cast<SSLIOHook*>(iohook);
+ return NULL;
+ }
+
SSLIOHook(IOHookProvider* hookprov)
: IOHook(hookprov)
{
@@ -205,11 +213,10 @@ class SSLClientCert
*/
static ssl_cert* GetCertificate(StreamSocket* sock)
{
- IOHook* iohook = sock->GetIOHook();
- if ((!iohook) || (iohook->prov->type != IOHookProvider::IOH_SSL))
+ SSLIOHook* ssliohook = SSLIOHook::IsSSL(sock);
+ if (!ssliohook)
return NULL;
- SSLIOHook* ssliohook = static_cast<SSLIOHook*>(iohook);
return ssliohook->GetCertificate();
}