Using event engine memory buffers in HTTP/1 layer.

This commit is contained in:
Igor Sysoev
2019-11-14 16:39:48 +03:00
parent 1ec6353733
commit 643c433f8e
4 changed files with 18 additions and 15 deletions

View File

@@ -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;
}