mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-06 03:45:26 +00:00
Fix possible missing symbols
This commit is contained in:
parent
4b2d6c8af6
commit
3e5ab4e99a
1 changed files with 6 additions and 0 deletions
6
third-party/mongoose/mongoose.c
vendored
6
third-party/mongoose/mongoose.c
vendored
|
|
@ -4753,6 +4753,12 @@ static int set_ssl_option(struct mg_context *ctx) {
|
|||
{
|
||||
#ifndef SSL_OP_NO_TLSv1
|
||||
#define SSL_OP_NO_TLSv1 0x04000000L
|
||||
#endif
|
||||
#ifndef SSL_OP_NO_SSLv2
|
||||
#define SSL_OP_NO_SSLv2 0x01000000L
|
||||
#endif
|
||||
#ifndef SSL_OP_NO_SSLv3
|
||||
#define SSL_OP_NO_SSLv3 0x02000000L
|
||||
#endif
|
||||
|
||||
long opts = SSL_CTX_get_options(ctx->ssl_ctx);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue