From 9639c372ed5cb16dcf0b7e14c7469fe5627c9701 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 22 Sep 2006 08:36:30 +0000 Subject: r18815: Fill in IDL for domain based DFS root functions (dfs_AddFtRoot, dfs_RemoveFtRoot and dfs_FlushFtTable). Guenther (This used to be commit 91d4fc25c5448cd8e3d6991b38a9f2190324c6b2) --- source4/librpc/idl/dfs.idl | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/source4/librpc/idl/dfs.idl b/source4/librpc/idl/dfs.idl index 9f4bd95ca2..491953de75 100644 --- a/source4/librpc/idl/dfs.idl +++ b/source4/librpc/idl/dfs.idl @@ -306,10 +306,32 @@ WERROR dfs_ManagerSendSiteInfo(); /* Function 0x0a */ - WERROR dfs_AddFtRoot(); + typedef struct { + uint32 unknown1; + [string,charset(UTF16)] uint16 *unknown2; + } dfs_UnknownStruct; + + WERROR dfs_AddFtRoot( + [in] [string,charset(UTF16)] uint16 servername[], + [in] [string,charset(UTF16)] uint16 dns_servername[], + [in] [string,charset(UTF16)] uint16 dfsname[], + [in] [string,charset(UTF16)] uint16 rootshare[], + [in] [string,charset(UTF16)] uint16 comment[], + [in] [string,charset(UTF16)] uint16 dfs_config_dn[], + [in] uint8 unknown1, + [in] uint32 flags, + [in,out,unique] dfs_UnknownStruct **unknown2 + ); /* Function 0x0b */ - WERROR dfs_RemoveFtRoot(); + WERROR dfs_RemoveFtRoot( + [in] [string,charset(UTF16)] uint16 servername[], + [in] [string,charset(UTF16)] uint16 dns_servername[], + [in] [string,charset(UTF16)] uint16 dfsname[], + [in] [string,charset(UTF16)] uint16 rootshare[], + [in] uint32 flags, + [in,out,unique] dfs_UnknownStruct **unknown + ); /* Function 0x0c */ WERROR dfs_AddStdRoot( @@ -347,7 +369,10 @@ WERROR dfs_SetDcAddress(); /* Function 0x12 */ - WERROR dfs_FlushFtTable(); + WERROR dfs_FlushFtTable( + [in] [string,charset(UTF16)] uint16 servername[], + [in] [string,charset(UTF16)] uint16 rootshare[] + ); /* Function 0x13 */ WERROR dfs_Add2(); -- cgit