comparison src/event/quic/ngx_event_quic_ack.c @ 8420:baf9551b4a5b quic

QUIC: renamed stream field from c to connection.
author Roman Arutyunyan <arut@nginx.com>
date Mon, 19 Apr 2021 17:21:07 +0300
parents 915c2f7092ed
children 225e9f1dfe7c
comparison
equal deleted inserted replaced
8419:515ac3c8435c 8420:baf9551b4a5b
515 case NGX_QUIC_FT_STREAM5: 515 case NGX_QUIC_FT_STREAM5:
516 case NGX_QUIC_FT_STREAM6: 516 case NGX_QUIC_FT_STREAM6:
517 case NGX_QUIC_FT_STREAM7: 517 case NGX_QUIC_FT_STREAM7:
518 sn = ngx_quic_find_stream(&qc->streams.tree, f->u.stream.stream_id); 518 sn = ngx_quic_find_stream(&qc->streams.tree, f->u.stream.stream_id);
519 519
520 if (sn && sn->c->write->error) { 520 if (sn && sn->connection->write->error) {
521 /* RESET_STREAM was sent */ 521 /* RESET_STREAM was sent */
522 ngx_quic_free_frame(c, f); 522 ngx_quic_free_frame(c, f);
523 break; 523 break;
524 } 524 }
525 525