diff options
Diffstat (limited to 'include/modules/ssl.h')
-rw-r--r-- | include/modules/ssl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules/ssl.h b/include/modules/ssl.h index 701c0d1f4..6fc2379ff 100644 --- a/include/modules/ssl.h +++ b/include/modules/ssl.h @@ -193,7 +193,7 @@ class SSLIOHook : public IOHook * Get the certificate sent by this peer * @return The SSL certificate sent by the peer, NULL if no cert was sent */ - ssl_cert* GetCertificate() const + virtual ssl_cert* GetCertificate() const { return certificate; } @@ -203,7 +203,7 @@ class SSLIOHook : public IOHook * @return The fingerprint of the SSL client certificate sent by the peer, * empty if no cert was sent */ - std::string GetFingerprint() const + virtual std::string GetFingerprint() const { ssl_cert* cert = GetCertificate(); if (cert && cert->IsUsable()) |