From 5e63494508ade5da00ad5ab9db139efe03d39c2e Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 29 Jun 2012 09:34:56 +0200 Subject: s3:smbXsrv.idl: add properties for durable handles to smbXsrv_open_global0 Pair-Programmed-With: Michael Adam metze --- source3/librpc/idl/smbXsrv.idl | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/librpc/idl') 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 { -- cgit