A number of engine connections is decreased on connection close.

This commit is contained in:
Igor Sysoev
2017-11-27 17:52:28 +03:00
parent 863377441b
commit 80e8ce8322
4 changed files with 12 additions and 4 deletions

View File

@@ -93,6 +93,15 @@ nxt_conn_create(nxt_mp_t *mp, nxt_task_t *task)
}
void
nxt_conn_free(nxt_task_t *task, nxt_conn_t *c)
{
task->thread->engine->connections--;
nxt_mp_release(c->mem_pool, c);
}
void
nxt_conn_io_shutdown(nxt_task_t *task, void *obj, void *data)
{