diff options
author | Jochen Neumeister <joneum@FreeBSD.org> | 2023-04-17 12:13:29 +0200 |
---|---|---|
committer | Jochen Neumeister <joneum@FreeBSD.org> | 2023-04-17 12:20:52 +0200 |
commit | 364b314d88996ec0e94b44e8b4297bb52170e4cb (patch) | |
tree | c2d7e1e5be8431023f53bae686fb5b87afb010b1 /www/nginx/files/extra-patch-nginx-ct-LibreSSL | |
parent | net-im/gotosocial: update to 0.8.0 (diff) |
www/nginx: Update to 1.24.0
Update NGINX to 1.24.0
Overview of the changes from nginx-devel. Osa has made many good changes in the last devel phases. These have been adopted into the nginx port (httpv3 ....). Also all modules were updated to the latest version
Sponsored by: Netzkommune GmbH
Diffstat (limited to 'www/nginx/files/extra-patch-nginx-ct-LibreSSL')
-rw-r--r-- | www/nginx/files/extra-patch-nginx-ct-LibreSSL | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/www/nginx/files/extra-patch-nginx-ct-LibreSSL b/www/nginx/files/extra-patch-nginx-ct-LibreSSL index 4dd87b8a8fae..9aa89a463a9d 100644 --- a/www/nginx/files/extra-patch-nginx-ct-LibreSSL +++ b/www/nginx/files/extra-patch-nginx-ct-LibreSSL @@ -1,20 +1,20 @@ ---- ../ nginx-ct-1.3.2/ngx_ssl_ct_module.c.orig 2016-11-30 22:58:29.000000000 +0100 -+++ ../nginx-ct-1.3.2/ngx_ssl_ct_module.c 2017-02-11 19:42:19.741572000 +0100 -@@ -170,7 +170,7 @@ +--- ../nginx-ct-93e9884/ngx_ssl_ct_module.c.orig 2017-07-23 08:03:35.000000000 -0400 ++++ ../nginx-ct-93e9884/ngx_ssl_ct_module.c 2018-04-24 16:58:27.698435000 -0400 +@@ -158,7 +158,7 @@ #endif } -#ifndef OPENSSL_IS_BORINGSSL +#if !defined(OPENSSL_IS_BORINGSSL) && !defined(LIBRESSL_VERSION_NUMBER) /* add OpenSSL TLS extension */ - if (SSL_CTX_add_server_custom_ext(ssl_ctx, NGX_SSL_CT_EXT, - &ngx_ssl_ct_ext_cb, NULL, NULL, NULL, NULL) == 0) -@@ -184,7 +184,7 @@ + # if OPENSSL_VERSION_NUMBER >= 0x10101000L + int context = SSL_EXT_CLIENT_HELLO +@@ -183,7 +183,7 @@ return NGX_CONF_OK; } -#ifndef OPENSSL_IS_BORINGSSL +#if !defined(OPENSSL_IS_BORINGSSL) && !defined(LIBRESSL_VERSION_NUMBER) - int ngx_ssl_ct_ext_cb(SSL *s, unsigned int ext_type, const unsigned char **out, - size_t *outlen, int *al, void *add_arg) - { + # if OPENSSL_VERSION_NUMBER >= 0x10101000L + int ngx_ssl_ct_ext_cb(SSL *s, unsigned int ext_type, unsigned int context, + const unsigned char **out, size_t *outlen, X509 *x, size_t chainidx, |