summaryrefslogtreecommitdiff
path: root/source4/librpc/idl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-11-23 17:38:32 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:06:06 -0500
commit7e2e2cf9b21b41e7604787dda9b1dd509a0d848e (patch)
treed4aaaad784eb536af2bcae1c0b567ba0026588f3 /source4/librpc/idl
parent90b06b4ea8d8d06e9cd9f6678b4086eda49204bd (diff)
downloadsamba-7e2e2cf9b21b41e7604787dda9b1dd509a0d848e.tar.gz
samba-7e2e2cf9b21b41e7604787dda9b1dd509a0d848e.tar.bz2
samba-7e2e2cf9b21b41e7604787dda9b1dd509a0d848e.zip
r3927: add idl file for NDR encoded LDAP attributes used for the directory service
metze (This used to be commit 07803f28863db72a7691766da912878459eec70a)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r--source4/librpc/idl/drsblobs.idl29
1 files changed, 29 insertions, 0 deletions
diff --git a/source4/librpc/idl/drsblobs.idl b/source4/librpc/idl/drsblobs.idl
new file mode 100644
index 0000000000..52c324e197
--- /dev/null
+++ b/source4/librpc/idl/drsblobs.idl
@@ -0,0 +1,29 @@
+#include "idl_types.h"
+
+[
+ uuid("38578646-4566-4564-2244-275796345667"),
+ version(0.0),
+ helpstring("Active Directory Replication LDAP Blobs")
+]
+interface drsblobs {
+ typedef struct {
+ uint32 attribute_id;
+ uint32 version;
+ NTTIME_1sec orginating_time;
+ GUID orginating_dsa;
+ uint64 orginating_usn;
+ uint64 local_usn;
+ } replPropertyMetaData;
+
+ typedef struct {
+ uint32 unknown1; /* version ? */
+ uint32 unknown2;
+ uint32 count;
+ uint32 unknown3;
+ replPropertyMetaData array[count];
+ } replPropertyMetaDataCtr;
+
+ void decode_replPropertyMetaData(
+ [in] replPropertyMetaDataCtr ctr
+ );
+}