Lines Matching refs:response
2222 … if (NULL == (ds = (data_string *)array_get_unused_element(con->response.headers, TYPE_STRING))) { in fcgi_response_parse()
2228 array_insert_unique(con->response.headers, (data_unset *)ds); in fcgi_response_parse()
2251 con->response.keep_alive = (0 == strcasecmp(value, "Keep-Alive")) ? 1 : 0; in fcgi_response_parse()
2343 con->response.content_length = strtol(value, NULL, 10); in fcgi_response_parse()
2346 if (con->response.content_length < 0) con->response.content_length = 0; in fcgi_response_parse()
2361 …if (NULL == (dcls = (data_string *)array_get_unused_element(con->response.headers, TYPE_STRING))) { in fcgi_response_parse()
2367 dcls = (data_string*) array_replace(con->response.headers, (data_unset *)dcls); in fcgi_response_parse()
2371 con->response.content_length = sendfile2_content_length; in fcgi_response_parse()
2619 … (NULL != (ds = (data_string *) array_get_element(con->response.headers, "X-LIGHTTPD-send-file")) in fcgi_demux_response()
2620 || NULL != (ds = (data_string *) array_get_element(con->response.headers, "X-Sendfile")))) { in fcgi_demux_response()
2625 …if (NULL == (dcls = (data_string *)array_get_unused_element(con->response.headers, TYPE_STRING))) { in fcgi_demux_response()
2635 dcls = (data_string*) array_replace(con->response.headers, (data_unset *)dcls); in fcgi_demux_response()
2639 con->response.content_length = sce->st.st_size; in fcgi_demux_response()
2656 con->response.transfer_encoding = HTTP_TRANSFER_ENCODING_CHUNKED; in fcgi_demux_response()
2666 con->response.transfer_encoding = HTTP_TRANSFER_ENCODING_CHUNKED; in fcgi_demux_response()