r4730: remove unused struct elements
authorStefan Metzmacher <metze@samba.org>
Fri, 14 Jan 2005 02:10:11 +0000 (02:10 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:08:49 +0000 (13:08 -0500)
part of this went in in the last commit...

metze
(This used to be commit 9ea9e1ced59e7962164972b1dc2d53e0277d4449)

source4/smb_server/smb_server.h

index 01eb63d01c674424f9438eb4835f0a6989f51ec1..aebace9ad069524b9310ab9e785af0ab4ed50eda 100644 (file)
@@ -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;