summaryrefslogtreecommitdiff
path: root/source4/smb_server/smb_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/smb_server/smb_server.h')
-rw-r--r--source4/smb_server/smb_server.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h
index 8efe7730df..12b12692f3 100644
--- a/source4/smb_server/smb_server.h
+++ b/source4/smb_server/smb_server.h
@@ -84,6 +84,8 @@ struct smbsrv_session {
struct timeval connect_time;
/* the time when the session setup was finished */
struct timeval auth_time;
+ /* the time when the last request comes in */
+ struct timeval last_request_time;
} statistics;
};
@@ -124,7 +126,10 @@ struct smbsrv_tcon {
/* some statictics for the management tools */
struct {
+ /* the time when the tree connect started */
struct timeval connect_time;
+ /* the time when the last request comes in */
+ struct timeval last_request_time;
} statistics;
};
@@ -297,6 +302,14 @@ struct smbsrv_connection {
enum security_types security;
BOOL nt_status_support;
} config;
+
+ /* some statictics for the management tools */
+ struct {
+ /* the time when the client connects */
+ struct timeval connect_time;
+ /* the time when the last request comes in */
+ struct timeval last_request_time;
+ } statistics;
};
#include "smb_server/smb_server_proto.h"