Lines Matching refs:response_header
353 buffer *response_header; member
494 hctx->response_header = buffer_init(); in handler_ctx_init()
516 buffer_free(hctx->response_header); in handler_ctx_free()
2582 if (hctx->response_header->used == 0) { in fcgi_demux_response()
2583 buffer_copy_string_buffer(hctx->response_header, packet.b); in fcgi_demux_response()
2585 buffer_append_string_buffer(hctx->response_header, packet.b); in fcgi_demux_response()
2588 if (NULL != (c = buffer_search_string_len(hctx->response_header, CONST_STR_LEN("\r\n\r\n")))) { in fcgi_demux_response()
2589 blen = hctx->response_header->used - (c - hctx->response_header->ptr) - 4; in fcgi_demux_response()
2590 hctx->response_header->used = (c - hctx->response_header->ptr) + 3; in fcgi_demux_response()
2592 … } else if (NULL != (c = buffer_search_string_len(hctx->response_header, CONST_STR_LEN("\n\n")))) { in fcgi_demux_response()
2593 blen = hctx->response_header->used - (c - hctx->response_header->ptr) - 2; in fcgi_demux_response()
2594 hctx->response_header->used = c - hctx->response_header->ptr + 2; in fcgi_demux_response()
2602 if (fcgi_response_parse(srv, con, p, hctx->response_header)) { in fcgi_demux_response()