mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-15 09:49:19 +08:00
13 lines
142 B
C
13 lines
142 B
C
|
#pragma once
|
||
|
|
||
|
#if MG_ENABLE_OPENSSL
|
||
|
|
||
|
#include <openssl/err.h>
|
||
|
#include <openssl/ssl.h>
|
||
|
|
||
|
struct mg_tls {
|
||
|
SSL_CTX *ctx;
|
||
|
SSL *ssl;
|
||
|
};
|
||
|
#endif
|