mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 06:26:02 -07:00
Added SSLServer::ssl_context()
This commit is contained in:
parent
27deb44df5
commit
3b35279b16
1 changed files with 4 additions and 0 deletions
|
@ -1382,6 +1382,8 @@ public:
|
|||
|
||||
bool is_valid() const override;
|
||||
|
||||
SSL_CTX *ssl_context() const;
|
||||
|
||||
private:
|
||||
bool process_and_close_socket(socket_t sock) override;
|
||||
|
||||
|
@ -7192,6 +7194,8 @@ inline SSLServer::~SSLServer() {
|
|||
|
||||
inline bool SSLServer::is_valid() const { return ctx_; }
|
||||
|
||||
inline SSL_CTX *SSLServer::ssl_context() const { return ctx_; }
|
||||
|
||||
inline bool SSLServer::process_and_close_socket(socket_t sock) {
|
||||
auto ssl = detail::ssl_new(
|
||||
sock, ctx_, ctx_mutex_,
|
||||
|
|
Loading…
Reference in a new issue