mirror of
https://github.com/nginx/nginx.git
synced 2025-01-20 10:32:59 +08:00
QUIC: fixed client certificates verification in stream.
The stream session requires 'ssl' flag to be set in order to perform certificate verification.
This commit is contained in:
parent
024df8da68
commit
8f8f484004
@ -146,6 +146,10 @@ ngx_stream_init_connection(ngx_connection_t *c)
|
||||
s->ssl = addr_conf->ssl;
|
||||
#endif
|
||||
|
||||
#if (NGX_STREAM_QUIC)
|
||||
s->ssl |= addr_conf->quic;
|
||||
#endif
|
||||
|
||||
if (c->buffer) {
|
||||
s->received += c->buffer->last - c->buffer->pos;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user