summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_conn_read.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2019-11-14 16:39:48 +0300
committerIgor Sysoev <igor@sysoev.ru>2019-11-14 16:39:48 +0300
commit643c433f8eb72cfe7d29d4f624888df646480477 (patch)
tree4a6cf6da2a889b896ae1cd1c5462cc3f85b350c4 /src/nxt_conn_read.c
parent1ec63537334e8765cd2d8e43dbca35340aa68777 (diff)
downloadunit-643c433f8eb72cfe7d29d4f624888df646480477.tar.gz
unit-643c433f8eb72cfe7d29d4f624888df646480477.tar.bz2
Using event engine memory buffers in HTTP/1 layer.
Diffstat (limited to 'src/nxt_conn_read.c')
-rw-r--r--src/nxt_conn_read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_conn_read.c b/src/nxt_conn_read.c
index 83969b31..3285abcd 100644
--- a/src/nxt_conn_read.c
+++ b/src/nxt_conn_read.c
@@ -69,7 +69,7 @@ nxt_conn_io_read(nxt_task_t *task, void *obj, void *data)
n = c->io->recvbuf(c, c->read);
} else {
- n = state->io_read_handler(c);
+ n = state->io_read_handler(task, c);
/* The state can be changed by io_read_handler. */
state = c->read_state;
}