comparison src/http/modules/ngx_http_proxy_module.c @ 6981:08dc60979133

SSL: added support for TLSv1.3 in ssl_protocols directive. Support for the TLSv1.3 protocol will be introduced in OpenSSL 1.1.1.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 18 Apr 2017 15:12:38 +0300
parents fa56ab75cffc
children 08537eab4f23
comparison
equal deleted inserted replaced
6980:dbb0c854e308 6981:08dc60979133
233 { ngx_string("SSLv2"), NGX_SSL_SSLv2 }, 233 { ngx_string("SSLv2"), NGX_SSL_SSLv2 },
234 { ngx_string("SSLv3"), NGX_SSL_SSLv3 }, 234 { ngx_string("SSLv3"), NGX_SSL_SSLv3 },
235 { ngx_string("TLSv1"), NGX_SSL_TLSv1 }, 235 { ngx_string("TLSv1"), NGX_SSL_TLSv1 },
236 { ngx_string("TLSv1.1"), NGX_SSL_TLSv1_1 }, 236 { ngx_string("TLSv1.1"), NGX_SSL_TLSv1_1 },
237 { ngx_string("TLSv1.2"), NGX_SSL_TLSv1_2 }, 237 { ngx_string("TLSv1.2"), NGX_SSL_TLSv1_2 },
238 { ngx_string("TLSv1.3"), NGX_SSL_TLSv1_3 },
238 { ngx_null_string, 0 } 239 { ngx_null_string, 0 }
239 }; 240 };
240 241
241 #endif 242 #endif
242 243