diff options
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/drsblobs.idl | 4 | ||||
-rw-r--r-- | source4/librpc/idl/epmapper.idl | 8 | ||||
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/source4/librpc/idl/drsblobs.idl b/source4/librpc/idl/drsblobs.idl index ff8be33478..51c4071a25 100644 --- a/source4/librpc/idl/drsblobs.idl +++ b/source4/librpc/idl/drsblobs.idl @@ -94,13 +94,13 @@ interface drsblobs { typedef [gensize,flag(NDR_PAHEX)] struct { /* this includes the 8 bytes of the repsFromToBlob header */ - [value(ndr_size_repsFromTo1(8, r, ndr->flags))] uint32 blobsize; + [value(ndr_size_repsFromTo1(r, ndr->flags)+8)] uint32 blobsize; uint32 consecutive_sync_failures; NTTIME_1sec last_success; NTTIME_1sec last_attempt; WERROR result_last_attempt; [relative,length_is(other_info_length)] repsFromTo1OtherInfo *other_info; - [value(ndr_size_repsFromTo1OtherInfo(0, r->other_info, ndr->flags))] uint32 other_info_length; + [value(ndr_size_repsFromTo1OtherInfo(r->other_info, ndr->flags))] uint32 other_info_length; uint32 replica_flags; uint8 schedule[84]; uint32 reserved; diff --git a/source4/librpc/idl/epmapper.idl b/source4/librpc/idl/epmapper.idl index e32b01a874..9e59f721bf 100644 --- a/source4/librpc/idl/epmapper.idl +++ b/source4/librpc/idl/epmapper.idl @@ -41,7 +41,7 @@ interface epmapper uint16 version; } epm_prot_uuid; - typedef enum { + typedef [enum8bit] enum { /* Level 4 and higher */ EPM_PROTOCOL_DNET_NSP = 0x04, @@ -71,7 +71,7 @@ interface epmapper EPM_PROTOCOL_HTTP = 0x1f, EPM_PROTOCOL_UNIX_DS = 0x20, /* Unix domain socket */ EPM_PROTOCOL_NULL = 0x21 - } epm_protocols; + } epm_protocol; typedef [nodiscriminant] union { [case(EPM_PROTOCOL_UUID)] epm_prot_uuid uuid; @@ -206,7 +206,7 @@ interface epmapper } epm_rhs; typedef struct { - uint8 protocol; + epm_protocol protocol; [switch_is(protocol)] epm_protocol_info info; } epm_lhs; @@ -226,7 +226,7 @@ interface epmapper } epm_tower; typedef struct { - [value(ndr_size_epm_tower(0, &r->tower,ndr->flags))] uint32 tower_length; + [value(ndr_size_epm_tower(&r->tower, ndr->flags))] uint32 tower_length; [subcontext(4)] epm_tower tower; } epm_twr_t; diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index 582b21beff..ca867a265c 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -638,7 +638,7 @@ interface netlogon } netr_DELTA_ID_UNION; typedef struct { - uint16 delta_type; + netr_DeltaEnum delta_type; [switch_is(delta_type)] netr_DELTA_ID_UNION delta_id_union; [switch_is(delta_type)] netr_DELTA_UNION delta_union; } netr_DELTA_ENUM; |