comparison src/http/modules/ngx_http_ssl_module.h @ 9120:0aaa09927703

SSL: removed the "ssl" directive. It has been deprecated since 7270:46c0c7ef4913 (1.15.0) in favour of the "ssl" parameter of the "listen" directive, which has been available since 2224:109849282793 (0.7.14).
author Roman Arutyunyan <arut@nginx.com>
date Thu, 08 Jun 2023 14:49:27 +0400
parents 71b7453fb11f
children
comparison
equal deleted inserted replaced
9119:08ef02ad5c54 9120:0aaa09927703
13 #include <ngx_core.h> 13 #include <ngx_core.h>
14 #include <ngx_http.h> 14 #include <ngx_http.h>
15 15
16 16
17 typedef struct { 17 typedef struct {
18 ngx_flag_t enable;
19
20 ngx_ssl_t ssl; 18 ngx_ssl_t ssl;
21 19
22 ngx_flag_t prefer_server_ciphers; 20 ngx_flag_t prefer_server_ciphers;
23 ngx_flag_t early_data; 21 ngx_flag_t early_data;
24 ngx_flag_t reject_handshake; 22 ngx_flag_t reject_handshake;
62 60
63 ngx_flag_t stapling; 61 ngx_flag_t stapling;
64 ngx_flag_t stapling_verify; 62 ngx_flag_t stapling_verify;
65 ngx_str_t stapling_file; 63 ngx_str_t stapling_file;
66 ngx_str_t stapling_responder; 64 ngx_str_t stapling_responder;
67
68 u_char *file;
69 ngx_uint_t line;
70 } ngx_http_ssl_srv_conf_t; 65 } ngx_http_ssl_srv_conf_t;
71 66
72 67
73 extern ngx_module_t ngx_http_ssl_module; 68 extern ngx_module_t ngx_http_ssl_module;
74 69