From 77d1173aa2a74644ced83cd37ceb3481530670e6 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 22 May 2012 13:23:13 +0200 Subject: [PATCH] s3:smbd: remove now unused conn_close_all() Pair-Programmed-With: Stefan Metzmacher --- source3/smbd/conn_idle.c | 15 --------------- source3/smbd/proto.h | 1 - 2 files changed, 16 deletions(-) diff --git a/source3/smbd/conn_idle.c b/source3/smbd/conn_idle.c index fd3bf9d9d6..23dcc8988a 100644 --- a/source3/smbd/conn_idle.c +++ b/source3/smbd/conn_idle.c @@ -80,21 +80,6 @@ bool conn_idle_all(struct smbd_server_connection *sconn, time_t t) return true; } -/**************************************************************************** - Close all conn structures. - Return true if any were closed. -****************************************************************************/ - -void conn_close_all(struct smbd_server_connection *sconn) -{ - if (sconn->using_smb2) { - smbXsrv_session_logoff_all(sconn->conn); - } else { - smb1srv_tcon_disconnect_all(sconn->conn); - } -} - - /**************************************************************************** Forcibly unmount a share. All instances of the parameter 'sharename' share are unmounted. diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h index fc670aba8e..ea862713ae 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -146,7 +146,6 @@ NTSTATUS delete_all_streams(connection_struct *conn, const char *fname); int conn_num_open(struct smbd_server_connection *sconn); bool conn_snum_used(struct smbd_server_connection *sconn, int snum); connection_struct *conn_new(struct smbd_server_connection *sconn); -void conn_close_all(struct smbd_server_connection *sconn); bool conn_idle_all(struct smbd_server_connection *sconn, time_t t); void conn_clear_vuid_caches(struct smbd_server_connection *sconn, uint64_t vuid); void conn_free(connection_struct *conn); -- 2.34.1