QUIC: fixed stream read event log.

Previously, the main connection log was there.  Now it's the stream connection
log.
This commit is contained in:
Roman Arutyunyan 2020-07-18 00:08:29 +03:00
parent 2e5c317431
commit fa3392dc10
1 changed files with 2 additions and 2 deletions

View File

@ -3892,8 +3892,8 @@ ngx_quic_create_stream(ngx_connection_t *c, uint64_t id, size_t rcvbuf_size)
sn->c->send = ngx_quic_stream_send;
sn->c->send_chain = ngx_quic_stream_send_chain;
sn->c->read->log = c->log;
sn->c->write->log = c->log;
sn->c->read->log = log;
sn->c->write->log = log;
log->connection = sn->c->number;