Introducing application timeout.

This commit is contained in:
Max Romanov
2017-09-15 20:30:24 +03:00
parent 90ae152ce0
commit 0bec14878e
13 changed files with 595 additions and 332 deletions

View File

@@ -152,35 +152,3 @@ nxt_conn_work_queue_set(nxt_conn_t *c, nxt_work_queue_t *wq)
c->read_timer.work_queue = wq;
c->write_timer.work_queue = wq;
}
nxt_req_conn_link_t *
nxt_conn_request_add(nxt_conn_t *c, nxt_req_id_t req_id)
{
nxt_req_conn_link_t *rc;
rc = nxt_mp_zalloc(c->mem_pool, sizeof(nxt_req_conn_link_t));
if (nxt_slow_path(rc == NULL)) {
nxt_thread_log_error(NXT_LOG_WARN, "failed to allocate req %08uxD "
"to conn", req_id);
return NULL;
}
rc->req_id = req_id;
rc->conn = c;
nxt_queue_insert_tail(&c->requests, &rc->link);
return rc;
}
void
nxt_conn_request_remove(nxt_conn_t *c, nxt_req_conn_link_t *rc)
{
nxt_queue_remove(&rc->link);
nxt_mp_free(c->mem_pool, rc);
}