diff options
| author | Stefan Metzmacher <metze@samba.org> | 2014-12-03 17:57:37 +0100 |
|---|---|---|
| committer | Jeremy Allison <jra@samba.org> | 2014-12-04 05:45:09 +0100 |
| commit | 7ca8785cae6529fe9b8f5546aaf3c15cca9458cd (patch) | |
| tree | affbf9444c181176ba98e64b177a5b8e6b31f887 /source3/include | |
| parent | 3e91b823e4447b936e0fafaf7807b665a51ded30 (diff) | |
s3:vfs.h: add more elements to struct fsp_lease
We'll need a reference to the smbd_server_connection as well
as a timeout handler.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/include')
| -rw-r--r-- | source3/include/vfs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h index b0f00e8862..e7dc07998d 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -205,6 +205,8 @@ struct fd_handle { struct fsp_lease { size_t ref_count; + struct smbd_server_connection *sconn; + struct tevent_timer *timeout; struct smb2_lease lease; }; |
