diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-04-28 17:04:33 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2016-04-28 17:04:33 +0200 |
commit | b96329dc3b775c77e98964c42cb0def7ca65ba0e (patch) | |
tree | 5581f1412bb1f2bda55a506edae3fd35971e4929 /include | |
parent | 6cfe4011ec0e90718d7d5a449a5330b8e9a18ec3 (diff) |
Add SSLIOHook::IsSSL() to determine whether a socket is using SSL or not
Use it in a few places
Diffstat (limited to 'include')
-rw-r--r-- | include/modules/ssl.h | 13 |
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(); } |