comparison src/event/ngx_event_openssl.c @ 8630:279ad36f2f4b quic

QUIC: renamed c->qs to c->quic.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 10 Nov 2020 19:40:00 +0000
parents 71b7453fb11f
children 507da0d3b070
comparison
equal deleted inserted replaced
8629:feec2cc762f6 8630:279ad36f2f4b
2868 int n, sslerr, mode; 2868 int n, sslerr, mode;
2869 ngx_err_t err; 2869 ngx_err_t err;
2870 ngx_uint_t tries; 2870 ngx_uint_t tries;
2871 2871
2872 #if (NGX_QUIC) 2872 #if (NGX_QUIC)
2873 if (c->qs) { 2873 if (c->quic) {
2874 /* QUIC streams inherit SSL object */ 2874 /* QUIC streams inherit SSL object */
2875 return NGX_OK; 2875 return NGX_OK;
2876 } 2876 }
2877 #endif 2877 #endif
2878 2878