diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-06-16 15:32:11 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-06-16 15:32:11 +0000 |
commit | 2f65722941903cfb5b4819bbf32b61ed1d330749 (patch) | |
tree | 77fb2186a9afef9acdbc77e60e43a82fc4dae122 /src/core/ngx_buf.h | |
parent | d09f7a1e9aa5816493e2fef93074383d95140c13 (diff) | |
download | nginx-2f65722941903cfb5b4819bbf32b61ed1d330749.tar.gz nginx-2f65722941903cfb5b4819bbf32b61ed1d330749.zip |
nginx-0.0.7-2004-06-16-19:32:11 import
Diffstat (limited to 'src/core/ngx_buf.h')
-rw-r--r-- | src/core/ngx_buf.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/ngx_buf.h b/src/core/ngx_buf.h index bfae4ac80..301d8f794 100644 --- a/src/core/ngx_buf.h +++ b/src/core/ngx_buf.h @@ -170,10 +170,11 @@ ngx_chain_t *ngx_create_chain_of_bufs(ngx_pool_t *pool, ngx_bufs_t *bufs); last = &cl->next -int ngx_output_chain(ngx_output_chain_ctx_t *ctx, ngx_chain_t *in); -int ngx_chain_writer(void *data, ngx_chain_t *in); +ngx_int_t ngx_output_chain(ngx_output_chain_ctx_t *ctx, ngx_chain_t *in); +ngx_int_t ngx_chain_writer(void *data, ngx_chain_t *in); -int ngx_chain_add_copy(ngx_pool_t *pool, ngx_chain_t **chain, ngx_chain_t *in); +ngx_int_t ngx_chain_add_copy(ngx_pool_t *pool, ngx_chain_t **chain, + ngx_chain_t *in); void ngx_chain_update_chains(ngx_chain_t **free, ngx_chain_t **busy, ngx_chain_t **out, ngx_buf_tag_t tag); |