diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-29 09:34:56 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-09-08 03:39:06 +0200 |
commit | 5e63494508ade5da00ad5ab9db139efe03d39c2e (patch) | |
tree | ddfd64476aa72c4c642c6e9b8b763ec4c752a572 /source3/librpc | |
parent | c853b68229d8c8eaa6f4ae1828621fad533bb8e3 (diff) | |
download | samba-5e63494508ade5da00ad5ab9db139efe03d39c2e.tar.gz samba-5e63494508ade5da00ad5ab9db139efe03d39c2e.tar.bz2 samba-5e63494508ade5da00ad5ab9db139efe03d39c2e.zip |
s3:smbXsrv.idl: add properties for durable handles to smbXsrv_open_global0
Pair-Programmed-With: Michael Adam <obnox@samba.org>
metze
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/idl/smbXsrv.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/librpc/idl/smbXsrv.idl b/source3/librpc/idl/smbXsrv.idl index 90572e5e4e..2a6d7b352b 100644 --- a/source3/librpc/idl/smbXsrv.idl +++ b/source3/librpc/idl/smbXsrv.idl @@ -1,5 +1,6 @@ #include "idl_types.h" +import "misc.idl"; import "server_id.idl"; import "security.idl"; import "auth.idl"; @@ -267,12 +268,19 @@ interface smbXsrv hyper open_volatile_id; dom_sid open_owner; NTTIME open_time; + GUID create_guid; + GUID client_guid; + GUID app_instance_id; /* * TODO: for durable/resilient/persistent handles we need more * things here. See [MS-SMB2] 3.3.1.10 Per Open * * NOTE: this is still version 0, which is not a stable format! */ + NTTIME disconnect_time; + uint32 durable_timeout_msec; + boolean8 durable; + DATA_BLOB backend_cookie; } smbXsrv_open_global0; typedef union { |