Set no linger on all connected clients

This commit is contained in:
Con Kolivas 2014-10-04 10:09:28 +10:00
parent 8e29c957e0
commit 0c16e193ce

View File

@ -131,6 +131,7 @@ retry:
}
keep_sockalive(fd);
nolinger_socket(fd);
LOGINFO("Connected new client %d on socket %d from %s:%d", ci->nfds, fd, client->address_name, port);
@ -155,10 +156,6 @@ static int drop_client(conn_instance_t *ci, client_instance_t *client)
ck_wlock(&ci->lock);
fd = client->fd;
if (fd != -1) {
const struct linger so_linger = { 1, 0 };
if (unlikely(setsockopt(client->fd, SOL_SOCKET, SO_LINGER, &so_linger, sizeof(so_linger))))
LOGWARNING("setsockopt failed with errno %d:%s", errno, strerror(errno));
Close(client->fd);
HASH_DEL(clients, client);
HASH_DELETE(fdhh, fdclients, client);