Using static and constant linger structure.

This commit is contained in:
Igor Sysoev
2017-06-29 15:52:47 +03:00
parent 52f79c3e53
commit 499a8f9ac8
2 changed files with 16 additions and 16 deletions

View File

@@ -19,11 +19,14 @@ void
nxt_conn_close(nxt_event_engine_t *engine, nxt_conn_t *c)
{
int ret;
socklen_t len;
struct linger linger;
nxt_work_queue_t *wq;
nxt_work_handler_t handler;
static const struct linger linger_off = {
.l_onoff = 1,
.l_linger = 0,
};
nxt_debug(c->socket.task, "conn close fd:%d, to:%d",
c->socket.fd, c->socket.timedout);
@@ -33,11 +36,8 @@ nxt_conn_close(nxt_event_engine_t *engine, nxt_conn_t *c)
* releases kernel memory associated with socket.
* This also causes sending TCP/IP RST to a peer.
*/
linger.l_onoff = 1;
linger.l_linger = 0;
len = sizeof(struct linger);
ret = setsockopt(c->socket.fd, SOL_SOCKET, SO_LINGER, &linger, len);
ret = setsockopt(c->socket.fd, SOL_SOCKET, SO_LINGER, &linger_off,
sizeof(struct linger));
if (nxt_slow_path(ret != 0)) {
nxt_log(c->socket.task, NXT_LOG_CRIT,