From b3b225c604e11e9c8d6f0939142d74f1e9c3c297 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 14 Jan 2005 02:10:11 +0000 Subject: r4730: remove unused struct elements part of this went in in the last commit... metze (This used to be commit 9ea9e1ced59e7962164972b1dc2d53e0277d4449) --- source4/smb_server/smb_server.h | 39 +-------------------------------------- 1 file changed, 1 insertion(+), 38 deletions(-) diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h index 01eb63d01c..aebace9ad0 100644 --- a/source4/smb_server/smb_server.h +++ b/source4/smb_server/smb_server.h @@ -148,10 +148,6 @@ struct substitute_context { * information associated with a SMB server connection */ struct smbsrv_connection { - /* a count of the number of packets we have received. We - * actually only care about zero/non-zero at this stage */ - //unsigned pkt_count; - /* context that has been negotiated between the client and server */ struct { /* have we already done the NBT session establishment? */ @@ -212,24 +208,6 @@ struct smbsrv_connection { struct idr_context *idtree_tid; } tree; - /* the context associated with open files on an smb socket */ -#if 0 - struct { - struct files_struct *files; /* open files */ - - /* a fsp to use when chaining */ - struct files_struct *chain_fsp; - - /* a fsp to use to save when breaking an oplock. */ - struct files_struct *oplock_save_chain_fsp; - - /* how many files are open */ - int files_used; - - /* limit for maximum open files */ - int real_max_open_files; - } file; -#endif /* context associated with currently valid session setups */ struct { /* this holds info on session vuids that are already validated for this VC */ @@ -247,23 +225,8 @@ struct smbsrv_connection { /* the request itself - needs to be freed */ struct smbsrv_request *request; } *requests; -#if 0 - /* the timers context contains info on when we last did various - * functions */ - struct { - /* when did we last do timeout processing? */ - time_t last_timeout_processing; - - /* when did we last sent a keepalive */ - time_t last_keepalive_sent; - - /* when we last checked the smb.conf for auto-reload */ - time_t last_smb_conf_reload; - } timers; -#endif - struct smb_signing_context signing; -// struct substitute_context substitute; + struct smb_signing_context signing; struct server_connection *connection; -- cgit