summaryrefslogtreecommitdiffstats
path: root/source4/smbd/process_single.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-07-15 08:28:19 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:57:37 -0500
commita1748ef743b3d2e2af0880a91f948062d314b5ee (patch)
tree65c5127be294f910e651ec7dceb74886ff1a5b36 /source4/smbd/process_single.c
parent3d4879fdc9c88ddde7b4ae2f7347f8fd1853971a (diff)
downloadsamba-a1748ef743b3d2e2af0880a91f948062d314b5ee.tar.gz
samba-a1748ef743b3d2e2af0880a91f948062d314b5ee.tar.xz
samba-a1748ef743b3d2e2af0880a91f948062d314b5ee.zip
r1514: close stuff from the server_connection not in the
close_connection fn of a specific service metze (This used to be commit 0e1f5e66d37deb7a77ae9f545e60685428fd9d21)
Diffstat (limited to 'source4/smbd/process_single.c')
-rw-r--r--source4/smbd/process_single.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/smbd/process_single.c b/source4/smbd/process_single.c
index b65418cd01e..1cba3faee3f 100644
--- a/source4/smbd/process_single.c
+++ b/source4/smbd/process_single.c
@@ -122,6 +122,9 @@ static void single_terminate_connection(struct server_connection *conn, const ch
{
DEBUG(0,("single_terminate_connection: reason[%s]\n",reason));
conn->service->ops->close_connection(conn,reason);
+ close(conn->event.fde->fd);
+ event_remove_fd(conn->event.ctx, conn->event.fde);
+ event_remove_timed(conn->event.ctx, conn->event.idle);
}
static int single_get_id(struct smbsrv_request *req)