From bca8f2d5680595744f872bf946d16bbdd2dc7320 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 17 Jul 2006 09:48:06 +0000 Subject: r17085: reuse the existing sec_desc_buf struct metze (This used to be commit 22463cbcdd159657d04657071451738e768d0b2a) --- source4/librpc/idl/srvsvc.idl | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'source4/librpc/idl/srvsvc.idl') diff --git a/source4/librpc/idl/srvsvc.idl b/source4/librpc/idl/srvsvc.idl index de41b23ce5..f253178d9a 100644 --- a/source4/librpc/idl/srvsvc.idl +++ b/source4/librpc/idl/srvsvc.idl @@ -455,6 +455,7 @@ uint32 current_users; [string,charset(UTF16)] uint16 *path; [string,charset(UTF16)] uint16 *password; + /* maybe here is a struct sec_desc_buf following */ uint32 unknown; [subcontext(4)] security_descriptor *sd; } srvsvc_NetShareInfo502; @@ -501,14 +502,9 @@ [size_is(count)] srvsvc_NetShareInfo1007 *array; } srvsvc_NetShareCtr1007; - typedef struct { - [range(0,0x40000),value(ndr_size_security_descriptor(sd,ndr->flags))] uint32 sd_size; - [subcontext(4)] security_descriptor *sd; - } srvsvc_NetShareInfo1501; - typedef struct { uint32 count; - [size_is(count)] srvsvc_NetShareInfo1501 *array; + [size_is(count)] sec_desc_buf *array; } srvsvc_NetShareCtr1501; typedef union { @@ -521,7 +517,7 @@ [case(1005)] srvsvc_NetShareInfo1005 *info1005; [case(1006)] srvsvc_NetShareInfo1006 *info1006; [case(1007)] srvsvc_NetShareInfo1007 *info1007; - [case(1501)] srvsvc_NetShareInfo1501 *info1501; + [case(1501)] sec_desc_buf *info1501; [default] ; } srvsvc_NetShareInfo; -- cgit