nxt_port_buf_completion() and nxt_sendbuf_completion().

nxt_sendbuf_completion() has been renamed to nxt_port_buf_completion()
and moved to src/nxt_port_socket.c.  nxt_sendbuf_completion0() has been
renamed to nxt_sendbuf_completion().
This commit is contained in:
Igor Sysoev
2018-03-28 19:10:02 +03:00
parent cd340b09e6
commit 18377ad288
4 changed files with 67 additions and 67 deletions

View File

@@ -845,8 +845,8 @@ nxt_h1p_sent(nxt_task_t *task, void *obj, void *data)
engine = task->thread->engine;
c->write = nxt_sendbuf_completion0(task, &engine->fast_work_queue,
c->write);
c->write = nxt_sendbuf_completion(task, &engine->fast_work_queue, c->write);
if (c->write != NULL) {
nxt_conn_write(engine, c);
}