From 9ae4a0151805229face3385e6c966de90c7fec29 Mon Sep 17 00:00:00 2001 From: Kozlov Dmitry Date: Mon, 28 May 2012 23:09:27 +0400 Subject: implemented delayed fd close (speeds up session termination process) --- accel-pppd/ctrl/l2tp/l2tp.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'accel-pppd/ctrl/l2tp') diff --git a/accel-pppd/ctrl/l2tp/l2tp.c b/accel-pppd/ctrl/l2tp/l2tp.c index d8a98f8d..c629bb35 100644 --- a/accel-pppd/ctrl/l2tp/l2tp.c +++ b/accel-pppd/ctrl/l2tp/l2tp.c @@ -26,6 +26,7 @@ #include "crypto.h" #include "connlimit.h" +#include "fdtrash.h" #include "memdebug.h" @@ -116,7 +117,6 @@ static void l2tp_disconnect(struct l2tp_conn_t *conn) struct l2tp_packet_t *pack; triton_md_unregister_handler(&conn->hnd); - close(conn->hnd.fd); if (conn->timeout_timer.tpd) triton_timer_del(&conn->timeout_timer); @@ -139,10 +139,12 @@ static void l2tp_disconnect(struct l2tp_conn_t *conn) pthread_mutex_unlock(&l2tp_lock); if (conn->ppp.fd != -1) - close(conn->ppp.fd); + fdtrash_add(conn->ppp.fd); if (conn->tunnel_fd != -1) - close(conn->tunnel_fd); + fdtrash_add(conn->tunnel_fd); + + fdtrash_add(conn->hnd.fd); triton_event_fire(EV_CTRL_FINISHED, &conn->ppp); -- cgit v1.2.3