comparison src/http/ngx_http_request.h @ 8873:94daa42ff5ce quic

Added r->response_sent flag. The flag indicates that the entire response was sent to the socket up to the last_buf flag. The flag is only usable for protocol implementations that call ngx_http_write_filter() from header filter, such as HTTP/1.x and HTTP/3.
author Roman Arutyunyan <arut@nginx.com>
date Thu, 30 Sep 2021 17:14:42 +0300
parents fac88e160653
children 8d0753760546
comparison
equal deleted inserted replaced
8872:2706d27d2c76 8873:94daa42ff5ce
545 unsigned filter_finalize:1; 545 unsigned filter_finalize:1;
546 unsigned post_action:1; 546 unsigned post_action:1;
547 unsigned request_complete:1; 547 unsigned request_complete:1;
548 unsigned request_output:1; 548 unsigned request_output:1;
549 unsigned header_sent:1; 549 unsigned header_sent:1;
550 unsigned response_sent:1;
550 unsigned expect_tested:1; 551 unsigned expect_tested:1;
551 unsigned root_tested:1; 552 unsigned root_tested:1;
552 unsigned done:1; 553 unsigned done:1;
553 unsigned logged:1; 554 unsigned logged:1;
554 555