| /f-stack/app/nginx-1.16.1/src/os/unix/ |
| H A D | ngx_linux_sendfile_chain.c | 49 int tcp_nodelay; in ngx_linux_sendfile_chain() local 101 if (c->tcp_nodelay == NGX_TCP_NODELAY_SET) { in ngx_linux_sendfile_chain() 103 tcp_nodelay = 0; in ngx_linux_sendfile_chain() 106 (const void *) &tcp_nodelay, sizeof(int)) == -1) in ngx_linux_sendfile_chain() 124 c->tcp_nodelay = NGX_TCP_NODELAY_UNSET; in ngx_linux_sendfile_chain() 131 if (c->tcp_nodelay == NGX_TCP_NODELAY_UNSET) { in ngx_linux_sendfile_chain()
|
| /f-stack/app/nginx-1.16.1/src/stream/ |
| H A D | ngx_stream_core_module.c | 100 offsetof(ngx_stream_core_srv_conf_t, tcp_nodelay), 337 && cscf->tcp_nodelay in ngx_stream_core_content_phase() 427 cscf->tcp_nodelay = NGX_CONF_UNSET; in ngx_stream_core_create_srv_conf() 484 ngx_conf_merge_value(conf->tcp_nodelay, prev->tcp_nodelay, 1); in ngx_stream_core_merge_srv_conf()
|
| H A D | ngx_stream.h | 180 ngx_flag_t tcp_nodelay; member
|
| H A D | ngx_stream_ssl_module.c | 370 if (cscf->tcp_nodelay && ngx_tcp_nodelay(c) != NGX_OK) { in ngx_stream_ssl_init_connection()
|
| H A D | ngx_stream_proxy_module.c | 788 && cscf->tcp_nodelay in ngx_stream_proxy_init_upstream()
|
| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_connection.c | 903 int tcp_nodelay = 1; in ngx_configure_listening_sockets() 906 (const void *) &tcp_nodelay, sizeof(int)) in ngx_configure_listening_sockets() 1496 int tcp_nodelay; local 1498 if (c->tcp_nodelay != NGX_TCP_NODELAY_UNSET) { 1504 tcp_nodelay = 1; 1507 (const void *) &tcp_nodelay, sizeof(int)) 1530 c->tcp_nodelay = NGX_TCP_NODELAY_SET;
|
| H A D | ngx_connection.h | 188 unsigned tcp_nodelay:2; /* ngx_connection_tcp_nodelay_e */ member
|
| /f-stack/app/nginx-1.16.1/src/event/ |
| H A D | ngx_event_connect.c | 182 c->tcp_nodelay = NGX_TCP_NODELAY_DISABLED;
|
| H A D | ngx_event_accept.c | 221 c->tcp_nodelay = NGX_TCP_NODELAY_DISABLED;
|
| /f-stack/app/nginx-1.16.1/src/http/ |
| H A D | ngx_http_core_module.h | 389 ngx_flag_t tcp_nodelay; /* tcp_nodelay */ member
|
| H A D | ngx_http_request.c | 736 if (clcf->tcp_nodelay && ngx_tcp_nodelay(c) != NGX_OK) { in ngx_http_ssl_handshake() 2994 int tcp_nodelay; in ngx_http_set_keepalive() local 3186 tcp_nodelay = ngx_tcp_nodelay_and_tcp_nopush ? 1 : 0; in ngx_http_set_keepalive() 3189 tcp_nodelay = 1; in ngx_http_set_keepalive() 3192 if (tcp_nodelay && clcf->tcp_nodelay && ngx_tcp_nodelay(c) != NGX_OK) { in ngx_http_set_keepalive()
|
| H A D | ngx_http_core_module.c | 464 offsetof(ngx_http_core_loc_conf_t, tcp_nodelay), 3435 clcf->tcp_nodelay = NGX_CONF_UNSET; in ngx_http_core_create_loc_conf() 3663 ngx_conf_merge_value(conf->tcp_nodelay, prev->tcp_nodelay, 1); in ngx_http_core_merge_loc_conf()
|
| H A D | ngx_http_upstream.c | 1703 if (clcf->tcp_nodelay && ngx_tcp_nodelay(c) != NGX_OK) { in ngx_http_upstream_ssl_init_connection() 2156 if (clcf->tcp_nodelay && ngx_tcp_nodelay(c) != NGX_OK) { in ngx_http_upstream_send_request_body() 2988 if (clcf->tcp_nodelay && ngx_tcp_nodelay(c) != NGX_OK) { in ngx_http_upstream_send_response() 3272 if (clcf->tcp_nodelay) { in ngx_http_upstream_upgrade()
|
| /f-stack/app/nginx-1.16.1/ |
| H A D | CHANGES.ru | 515 *) Изменение: теперь директива tcp_nodelay устанавливает опцию 1197 *) Добавление: директива tcp_nodelay в модуле stream. 1322 *) Добавление: теперь директива tcp_nodelay работает для SSL-соединений 1476 *) Добавление: теперь директива tcp_nodelay работает для 2119 *) Исправление: директива tcp_nodelay вызывала ошибку при проксировании 6517 *) Изменение: директива tcp_nodelay теперь по умолчанию включена. 8285 *) Изменение: под FreeBSD директивы tcp_nopush и tcp_nodelay вместе 8439 *) Добавление: директива tcp_nodelay.
|
| H A D | CHANGES | 506 *) Workaround: now the "tcp_nodelay" directive sets the TCP_NODELAY 1176 *) Feature: the "tcp_nodelay" directive in the stream module. 1298 *) Feature: now the "tcp_nodelay" directive works with backend SSL 1447 *) Feature: now the "tcp_nodelay" directive works with SPDY connections. 2074 *) Bugfix: the "tcp_nodelay" directive caused an error if a WebSocket 6390 *) Change: now the "tcp_nodelay" directive is turned on by default. 8147 *) Change: both tcp_nopush and tcp_nodelay directives affect the 8299 *) Feature: the tcp_nodelay directive.
|
| /f-stack/app/nginx-1.16.1/src/http/v2/ |
| H A D | ngx_http_v2.c | 500 int tcp_nodelay; in ngx_http_v2_send_output_queue() local 556 tcp_nodelay = ngx_tcp_nodelay_and_tcp_nopush ? 1 : 0; in ngx_http_v2_send_output_queue() 559 tcp_nodelay = 1; in ngx_http_v2_send_output_queue() 562 if (tcp_nodelay && clcf->tcp_nodelay && ngx_tcp_nodelay(c) != NGX_OK) { in ngx_http_v2_send_output_queue() 3074 fc->tcp_nodelay = NGX_TCP_NODELAY_DISABLED; in ngx_http_v2_create_stream()
|
| /f-stack/app/nginx-1.16.1/contrib/vim/syntax/ |
| H A D | nginx.vim | 623 syn keyword ngxDirective contained tcp_nodelay
|