diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-03-25 13:40:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:11:16 -0500 |
commit | 5a9ceee7a524293c67d4c32edde9da32a877ecce (patch) | |
tree | 54a0bb998f5d8409cf173d3d2559520e65d7f383 /source4/librpc/idl | |
parent | 2fa732c6251f6dd23c3c8ef1facf638c9c531bdd (diff) | |
download | samba-5a9ceee7a524293c67d4c32edde9da32a877ecce.tar.gz samba-5a9ceee7a524293c67d4c32edde9da32a877ecce.tar.bz2 samba-5a9ceee7a524293c67d4c32edde9da32a877ecce.zip |
r6061: add start of compression support in our rpc code
this is not complete cuurently...
but I want other people to test it and help me on finishing it.
(try to change the #if 0 in torture/rpc/drsuapi.c into #if 1)
metze
(This used to be commit 335adef37082a78e0426decb715629bd778e6582)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/drsuapi.idl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source4/librpc/idl/drsuapi.idl b/source4/librpc/idl/drsuapi.idl index 330165830c..1b81dd6297 100644 --- a/source4/librpc/idl/drsuapi.idl +++ b/source4/librpc/idl/drsuapi.idl @@ -283,7 +283,8 @@ interface drsuapi } drsuapi_DsReplicaCoursor2Ctr2; typedef [v1_enum] enum { - DRSUAPI_OBJECTCLASS_top = 0x0 + DRSUAPI_OBJECTCLASS_top = 0x00010000, + DRSUAPI_OBJECTCLASS_test = 0x00000000 } drsuapi_DsObjectClassId; typedef [v1_enum,public] enum { @@ -497,9 +498,10 @@ interface drsuapi } drsuapi_DsGetNCChangesCtr1; typedef struct { - uint32 unknown1;/* decompressed_length ? */ + uint32 decompressed_length; uint32 compressed_length; - DATA_BLOB *compressed; + [subcontext(4),compression(NDR_COMPRESSION_ZLIB,compressed_length,decompressed_length),flag(NDR_REMAINING)] DATA_BLOB *decompressed; + /*[subcontext(4),compression(NDR_COMPRESSION_ZLIB,compressed_length,decompressed_length)] drsuapi_DsGetNCChangesCtr1 *ctr1;*/ } drsuapi_DsGetNCChangesCompressedInfo; typedef struct { |