diff options
author | Günther Deschner <gd@samba.org> | 2007-11-06 01:24:07 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:44:25 +0100 |
commit | bffef39e71e543cfa7520884e4484680e5e260ce (patch) | |
tree | 29cca762e66242b961ffce2ce95e0cd8d6b092b5 /source4/librpc | |
parent | ba4a5bb2ea2cf81869585bc518b2da2108cd0c28 (diff) | |
download | samba-bffef39e71e543cfa7520884e4484680e5e260ce.tar.gz samba-bffef39e71e543cfa7520884e4484680e5e260ce.tar.bz2 samba-bffef39e71e543cfa7520884e4484680e5e260ce.zip |
r25848: Add IDL and torture test for dfs_SetDcAddress and dfs_GetDcAddress.
Guenther
(This used to be commit 8fb5d36734cb19dcbcf5e22c43e80db7646e82fa)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/dfs.idl | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/source4/librpc/idl/dfs.idl b/source4/librpc/idl/dfs.idl index 225436f3aa..dbbd15039c 100644 --- a/source4/librpc/idl/dfs.idl +++ b/source4/librpc/idl/dfs.idl @@ -377,10 +377,20 @@ import "misc.idl"; ); /* Function 0x10 */ - WERROR dfs_GetDcAddress(); + WERROR dfs_GetDcAddress( + [in] [string,charset(UTF16)] uint16 servername[], + [in,out,ref] [string,charset(UTF16)] uint16 **server_fullname, + [in,out,ref] boolean8 *is_root, + [in,out,ref] uint32 *ttl + ); /* Function 0x11 */ - WERROR dfs_SetDcAddress(); + WERROR dfs_SetDcAddress( + [in] [string,charset(UTF16)] uint16 servername[], + [in] [string,charset(UTF16)] uint16 server_fullname[], + [in] uint32 flags, + [in] uint32 ttl + ); /* Function 0x12 */ WERROR dfs_FlushFtTable( |