diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-08-30 09:52:39 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-08-30 09:52:39 +0000 |
commit | bfff03406d869119eb0cec68f028e8ab6fd6caa5 (patch) | |
tree | df66c97cc1e19310ce18a8d882480bdfa0c32780 /src/core/ngx_connection.h | |
parent | ddda411d146607ec6cd61fcbb3fff95340a28df2 (diff) | |
download | nginx-bfff03406d869119eb0cec68f028e8ab6fd6caa5.tar.gz nginx-bfff03406d869119eb0cec68f028e8ab6fd6caa5.zip |
aio sendfile
Diffstat (limited to 'src/core/ngx_connection.h')
-rw-r--r-- | src/core/ngx_connection.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h index 689b5f0e9..ebc0c4c14 100644 --- a/src/core/ngx_connection.h +++ b/src/core/ngx_connection.h @@ -159,6 +159,11 @@ struct ngx_connection_s { unsigned accept_context_updated:1; #endif +#if (NGX_HAVE_AIO_SENDFILE) + unsigned aio_sendfile:1; + ngx_buf_t *busy_sendfile; +#endif + #if (NGX_THREADS) ngx_atomic_t lock; #endif |