Home
last modified time | relevance | path

Searched refs:parsed_response (Results 1 – 6 of 6) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dmod_cgi.c267 con->parsed_response |= HTTP_STATUS; in cgi_response_parse()
296 con->parsed_response |= HTTP_DATE; in cgi_response_parse()
302 con->parsed_response |= HTTP_STATUS; in cgi_response_parse()
307 con->parsed_response |= HTTP_LOCATION; in cgi_response_parse()
313 con->parsed_response |= HTTP_CONNECTION; in cgi_response_parse()
319 con->parsed_response |= HTTP_CONTENT_LENGTH; in cgi_response_parse()
329 if ((con->parsed_response & HTTP_LOCATION) && in cgi_response_parse()
330 !(con->parsed_response & HTTP_STATUS)) { in cgi_response_parse()
491 !(con->parsed_response & HTTP_CONTENT_LENGTH)) { in cgi_demux_response()
H A Dmod_proxy.c586 con->parsed_response |= HTTP_STATUS; in proxy_response_parse()
608 con->parsed_response |= HTTP_DATE; in proxy_response_parse()
613 con->parsed_response |= HTTP_LOCATION; in proxy_response_parse()
624 con->parsed_response |= HTTP_CONTENT_LENGTH; in proxy_response_parse()
720 !(con->parsed_response & HTTP_CONTENT_LENGTH)) { in proxy_demux_response()
H A Dconnections.c459 con->parsed_response &= ~HTTP_CONTENT_LENGTH;
493 con->parsed_response &= ~HTTP_CONTENT_LENGTH;
566 if ((!(con->parsed_response & HTTP_CONTENT_LENGTH)) &&
604 if (((con->parsed_response & HTTP_CONTENT_LENGTH) == 0) &&
618 if (con->parsed_response & HTTP_CONNECTION) {
809 con->parsed_response = 0;
H A Dmod_scgi.c1720 con->parsed_response |= HTTP_STATUS; in scgi_response_parse()
1749 con->parsed_response |= HTTP_DATE; in scgi_response_parse()
1755 con->parsed_response |= HTTP_STATUS; in scgi_response_parse()
1760 con->parsed_response |= HTTP_LOCATION; in scgi_response_parse()
1766 con->parsed_response |= HTTP_CONNECTION; in scgi_response_parse()
1772 con->parsed_response |= HTTP_CONTENT_LENGTH; in scgi_response_parse()
1782 if ((con->parsed_response & HTTP_LOCATION) && in scgi_response_parse()
1783 !(con->parsed_response & HTTP_STATUS)) { in scgi_response_parse()
1907 !(con->parsed_response & HTTP_CONTENT_LENGTH)) { in scgi_demux_response()
H A Dmod_fastcgi.c2235 con->parsed_response |= HTTP_DATE; in fcgi_response_parse()
2241 con->parsed_response |= HTTP_STATUS; in fcgi_response_parse()
2246 con->parsed_response |= HTTP_LOCATION; in fcgi_response_parse()
2252 con->parsed_response |= HTTP_CONNECTION; in fcgi_response_parse()
2344 con->parsed_response |= HTTP_CONTENT_LENGTH; in fcgi_response_parse()
2370 con->parsed_response |= HTTP_CONTENT_LENGTH; in fcgi_response_parse()
2375 if ((con->parsed_response & HTTP_LOCATION) && in fcgi_response_parse()
2376 !(con->parsed_response & HTTP_STATUS)) { in fcgi_response_parse()
2638 con->parsed_response |= HTTP_CONTENT_LENGTH; in fcgi_demux_response()
2655 !(con->parsed_response & HTTP_CONTENT_LENGTH)) { in fcgi_demux_response()
[all …]
H A Dbase.h411 …unsigned int parsed_response; /* bitfield which contains the important header-fields of the parsed… member