Home
last modified time | relevance | path

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

/dports/www/lighttpd/lighttpd-1.4.63/src/
H A Dconnections.c1766 r->reqbody_length = dst_cq->bytes_in; in connection_handle_read_post_chunked()
1779 (long long)(dst_cq->bytes_in + te_chunked)); in connection_handle_read_post_chunked()
1805 if (dst_cq->bytes_in + te_chunked <= 64*1024) { in connection_handle_read_post_chunked()
1807 chunkqueue_steal(dst_cq, cq, len); in connection_handle_read_post_chunked()
1843 chunkqueue_append_chunkqueue(dst_cq, cq); in connection_handle_read_body_unknown()
1844 if (0 != max_request_size && dst_cq->bytes_in > max_request_size) { in connection_handle_read_body_unknown()
1893 chunkqueue * const dst_cq = &r->reqbody_queue; in connection_handle_read_post_state() local
1936 ? connection_handle_read_post_chunked(r, cq, dst_cq) in connection_handle_read_post_state()
1942 off_t len = (off_t)r->reqbody_length - dst_cq->bytes_in; in connection_handle_read_post_state()
1945 chunkqueue_steal(dst_cq, cq, len); in connection_handle_read_post_state()
[all …]