Home
last modified time | relevance | path

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

/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_output_chain.c14 #define NGX_SENDFILE_LIMIT 4096
69 #if (NGX_SENDFILE_LIMIT) in ngx_output_chain()
269 #if (NGX_SENDFILE_LIMIT) in ngx_output_chain_as_is()
271 if (buf->in_file && buf->file_pos >= NGX_SENDFILE_LIMIT) { in ngx_output_chain_as_is()
331 #if (NGX_SENDFILE_LIMIT) in ngx_output_chain_add_copy()
348 #if (NGX_SENDFILE_LIMIT) in ngx_output_chain_add_copy()
353 && buf->file_pos < NGX_SENDFILE_LIMIT in ngx_output_chain_add_copy()
354 && buf->file_last > NGX_SENDFILE_LIMIT) in ngx_output_chain_add_copy()
370 buf->file_pos = NGX_SENDFILE_LIMIT; in ngx_output_chain_add_copy()
371 b->file_last = NGX_SENDFILE_LIMIT; in ngx_output_chain_add_copy()
[all …]
/f-stack/app/nginx-1.16.1/src/os/unix/
H A Dngx_linux_config.h78 #define NGX_SENDFILE_LIMIT 0x80000000 macro