diff options
author | Peter Powell <petpow@saberuk.com> | 2018-10-16 14:57:28 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-10-25 13:50:43 +0100 |
commit | ae0ae8ea617a1a3a3d4f89f5a5e470e8aa262c9f (patch) | |
tree | 12eef804c08f55a8dcb9ff2cf1eefbb425df48f0 /include | |
parent | d62c870ffb1bf02e4be65183f3ae4bbe2229fbb2 (diff) |
Allow HAProxy to specify that a client is connecting with SSL.
Diffstat (limited to 'include')
-rw-r--r-- | include/modules/ssl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/modules/ssl.h b/include/modules/ssl.h index 930cb6dc6..edea45a10 100644 --- a/include/modules/ssl.h +++ b/include/modules/ssl.h @@ -277,6 +277,12 @@ class UserCertificateAPIBase : public DataProvider */ virtual ssl_cert* GetCertificate(User* user) = 0; + /** Set the SSL certificate of a user. + * @param user The user whose certificate to set. + * @param cert The SSL certificate to set for the user. + */ + virtual void SetCertificate(User* user, ssl_cert* cert) = 0; + /** Get the key fingerprint from a user's certificate * @param user The user whose key fingerprint to get, user may be remote * @return The key fingerprint from the user's SSL certificate or an empty string |