aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2014-11-19 21:16:19 +0300
committerValentin Bartenev <vbart@nginx.com>2014-11-19 21:16:19 +0300
commit41ed9734561fc957a64ca7e4dab5a8c6e3ac3c0b (patch)
treee9cff324d0e8936c25ad8218ac8f7aa155185ecc /src/core
parent3ecac9eaba3b1392523ca36554b4db1405fbf914 (diff)
downloadnginx-41ed9734561fc957a64ca7e4dab5a8c6e3ac3c0b.tar.gz
nginx-41ed9734561fc957a64ca7e4dab5a8c6e3ac3c0b.zip
Renamed ngx_handle_sent_chain() to ngx_chain_update_sent().
No functional changes.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ngx_buf.c2
-rw-r--r--src/core/ngx_buf.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_buf.c b/src/core/ngx_buf.c
index 94a3d3f10..764b34bf9 100644
--- a/src/core/ngx_buf.c
+++ b/src/core/ngx_buf.c
@@ -221,7 +221,7 @@ ngx_chain_update_chains(ngx_pool_t *p, ngx_chain_t **free, ngx_chain_t **busy,
ngx_chain_t *
-ngx_handle_sent_chain(ngx_chain_t *in, off_t sent)
+ngx_chain_update_sent(ngx_chain_t *in, off_t sent)
{
off_t size;
diff --git a/src/core/ngx_buf.h b/src/core/ngx_buf.h
index cc28a3e15..f6b2dba86 100644
--- a/src/core/ngx_buf.h
+++ b/src/core/ngx_buf.h
@@ -158,6 +158,6 @@ ngx_chain_t *ngx_chain_get_free_buf(ngx_pool_t *p, ngx_chain_t **free);
void ngx_chain_update_chains(ngx_pool_t *p, ngx_chain_t **free,
ngx_chain_t **busy, ngx_chain_t **out, ngx_buf_tag_t tag);
-ngx_chain_t *ngx_handle_sent_chain(ngx_chain_t *in, off_t sent);
+ngx_chain_t *ngx_chain_update_sent(ngx_chain_t *in, off_t sent);
#endif /* _NGX_BUF_H_INCLUDED_ */