comparison src/http/v3/ngx_http_v3_uni.c @ 9068:6c732b87ee10 quic

HTTP/3: fixed CANCEL_PUSH handling.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 06 Apr 2023 18:18:41 +0400
parents c851a2ed5ce8
children
comparison
equal deleted inserted replaced
9067:f68fdb017141 9068:6c732b87ee10
745 return NGX_HTTP_V3_ERR_ID_ERROR; 745 return NGX_HTTP_V3_ERR_ID_ERROR;
746 } 746 }
747 747
748 for (q = ngx_queue_head(&h3c->pushing); 748 for (q = ngx_queue_head(&h3c->pushing);
749 q != ngx_queue_sentinel(&h3c->pushing); 749 q != ngx_queue_sentinel(&h3c->pushing);
750 q = ngx_queue_next(&h3c->pushing)) 750 q = ngx_queue_next(q))
751 { 751 {
752 push = (ngx_http_v3_push_t *) q; 752 push = (ngx_http_v3_push_t *) q;
753 753
754 if (push->id != push_id) { 754 if (push->id != push_id) {
755 continue; 755 continue;