comparison src/event/ngx_event_openssl.c @ 7936:b9e02e9b2f1d

Stream: the "ssl_alpn" directive. The directive sets the server list of supported application protocols and requires one of this protocols to be negotiated if client is using ALPN.
author Vladimir Homutov <vl@nginx.com>
date Tue, 19 Oct 2021 12:19:59 +0300
parents eb6c77e6d55d
children 46a02ed7c966
comparison
equal deleted inserted replaced
7935:eb6c77e6d55d 7936:b9e02e9b2f1d
3131 #ifdef SSL_R_PARSE_TLSEXT 3131 #ifdef SSL_R_PARSE_TLSEXT
3132 || n == SSL_R_PARSE_TLSEXT /* 227 */ 3132 || n == SSL_R_PARSE_TLSEXT /* 227 */
3133 #endif 3133 #endif
3134 #ifdef SSL_R_CALLBACK_FAILED 3134 #ifdef SSL_R_CALLBACK_FAILED
3135 || n == SSL_R_CALLBACK_FAILED /* 234 */ 3135 || n == SSL_R_CALLBACK_FAILED /* 234 */
3136 #endif
3137 #ifdef SSL_R_NO_APPLICATION_PROTOCOL
3138 || n == SSL_R_NO_APPLICATION_PROTOCOL /* 235 */
3136 #endif 3139 #endif
3137 || n == SSL_R_UNEXPECTED_MESSAGE /* 244 */ 3140 || n == SSL_R_UNEXPECTED_MESSAGE /* 244 */
3138 || n == SSL_R_UNEXPECTED_RECORD /* 245 */ 3141 || n == SSL_R_UNEXPECTED_RECORD /* 245 */
3139 || n == SSL_R_UNKNOWN_ALERT_TYPE /* 246 */ 3142 || n == SSL_R_UNKNOWN_ALERT_TYPE /* 246 */
3140 || n == SSL_R_UNKNOWN_PROTOCOL /* 252 */ 3143 || n == SSL_R_UNKNOWN_PROTOCOL /* 252 */