From 049a16c8ef475f6b327292d231022fd4c5aaddf1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 21 Dec 2010 11:59:05 +1100 Subject: dns: auto-calculate the wDataLength field in DNS records we need this for creating new records --- librpc/idl/dnsp.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'librpc/idl/dnsp.idl') diff --git a/librpc/idl/dnsp.idl b/librpc/idl/dnsp.idl index 905e420482..eed0c478fb 100644 --- a/librpc/idl/dnsp.idl +++ b/librpc/idl/dnsp.idl @@ -92,7 +92,7 @@ interface dnsp dnsp_name nameTarget; } dnsp_srv; - typedef [nodiscriminant] union { + typedef [nodiscriminant,gensize] union { [case(DNS_TYPE_A)] [flag(NDR_BIG_ENDIAN)] ipv4address ipv4; [case(DNS_TYPE_NS)] dnsp_name ns; [case(DNS_TYPE_CNAME)] dnsp_name cname; @@ -109,7 +109,7 @@ interface dnsp /* this is the format for the dnsRecord attribute in the DNS partitions in AD */ typedef [public] struct { - uint16 wDataLength; + [value(ndr_size_dnsRecordData(&data,wType,ndr->flags))] uint16 wDataLength; dns_record_type wType; uint32 dwFlags; uint32 dwSerial; -- cgit