comparison src/stream/ngx_stream_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 ee3645078759
children ed1101bbf19f
comparison
equal deleted inserted replaced
6980:dbb0c854e308 6981:08dc60979133
101 { ngx_string("SSLv2"), NGX_SSL_SSLv2 }, 101 { ngx_string("SSLv2"), NGX_SSL_SSLv2 },
102 { ngx_string("SSLv3"), NGX_SSL_SSLv3 }, 102 { ngx_string("SSLv3"), NGX_SSL_SSLv3 },
103 { ngx_string("TLSv1"), NGX_SSL_TLSv1 }, 103 { ngx_string("TLSv1"), NGX_SSL_TLSv1 },
104 { ngx_string("TLSv1.1"), NGX_SSL_TLSv1_1 }, 104 { ngx_string("TLSv1.1"), NGX_SSL_TLSv1_1 },
105 { ngx_string("TLSv1.2"), NGX_SSL_TLSv1_2 }, 105 { ngx_string("TLSv1.2"), NGX_SSL_TLSv1_2 },
106 { ngx_string("TLSv1.3"), NGX_SSL_TLSv1_3 },
106 { ngx_null_string, 0 } 107 { ngx_null_string, 0 }
107 }; 108 };
108 109
109 #endif 110 #endif
110 111