Skip to content

Commit 9649964

Browse files
committed
Sync struct definitions with upstream.
Change-Id: I344e315cc30c873730277684817ac1198f6238b8 Signed-off-by: Piotr Sikora <[email protected]>
1 parent 5528260 commit 9649964

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

ngx_cache_purge_module.c

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,19 @@ typedef struct {
368368

369369
ngx_uint_t headers_hash_max_size;
370370
ngx_uint_t headers_hash_bucket_size;
371+
372+
# if (NGX_HTTP_SSL)
373+
# if defined(nginx_version) && (nginx_version >= 1005006)
374+
ngx_uint_t ssl;
375+
ngx_uint_t ssl_protocols;
376+
ngx_str_t ssl_ciphers;
377+
# endif /* nginx_version >= 1005006 */
378+
# if defined(nginx_version) && (nginx_version >= 1007000)
379+
ngx_uint_t ssl_verify_depth;
380+
ngx_str_t ssl_trusted_certificate;
381+
ngx_str_t ssl_crl;
382+
# endif /* nginx_version >= 1007000 */
383+
# endif
371384
} ngx_http_proxy_loc_conf_t;
372385

373386
char *
@@ -599,6 +612,19 @@ typedef struct {
599612

600613
ngx_uint_t modifier1;
601614
ngx_uint_t modifier2;
615+
616+
# if (NGX_HTTP_SSL)
617+
# if defined(nginx_version) && (nginx_version >= 1005008)
618+
ngx_uint_t ssl;
619+
ngx_uint_t ssl_protocols;
620+
ngx_str_t ssl_ciphers;
621+
# endif /* nginx_version >= 1005008 */
622+
# if defined(nginx_version) && (nginx_version >= 1007000)
623+
ngx_uint_t ssl_verify_depth;
624+
ngx_str_t ssl_trusted_certificate;
625+
ngx_str_t ssl_crl;
626+
# endif /* nginx_version >= 1007000 */
627+
# endif
602628
} ngx_http_uwsgi_loc_conf_t;
603629

604630
char *

0 commit comments

Comments
 (0)