summaryrefslogtreecommitdiff
path: root/librpc/idl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-01-13 11:10:27 +1100
committerAndrew Tridgell <tridge@samba.org>2011-01-14 16:39:32 +1100
commit74493af86f953d209c57649178421929e8061c99 (patch)
tree95821c9ecb9a417b6a5c4f79ab0bca4eb7c63c1c /librpc/idl
parent27d7f6a31203c6ab3c5b1e3d667fc1c4c79d334f (diff)
downloadsamba-74493af86f953d209c57649178421929e8061c99.tar.gz
samba-74493af86f953d209c57649178421929e8061c99.tar.bz2
samba-74493af86f953d209c57649178421929e8061c99.zip
s4-dns: renamed DNS_TYPE_ZERO to DNS_TYPE_TOMBSTONE
we now know that these are tombstone records, with a timestamp Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'librpc/idl')
-rw-r--r--librpc/idl/dnsp.idl3
1 files changed, 2 insertions, 1 deletions
diff --git a/librpc/idl/dnsp.idl b/librpc/idl/dnsp.idl
index 495a3e2af2..f8cf1d43be 100644
--- a/librpc/idl/dnsp.idl
+++ b/librpc/idl/dnsp.idl
@@ -24,7 +24,7 @@ import "misc.idl";
interface dnsp
{
typedef [enum16bit] enum {
- DNS_TYPE_ZERO = 0x0,
+ DNS_TYPE_TOMBSTONE = 0x0,
DNS_TYPE_A = 0x1,
DNS_TYPE_NS = 0x2,
DNS_TYPE_MD = 0x3,
@@ -109,6 +109,7 @@ interface dnsp
} dnsp_srv;
typedef [nodiscriminant,gensize] union {
+ [case(DNS_TYPE_TOMBSTONE)] NTTIME timestamp;
[case(DNS_TYPE_A)] [flag(NDR_BIG_ENDIAN)] ipv4address ipv4;
[case(DNS_TYPE_NS)] dnsp_name ns;
[case(DNS_TYPE_CNAME)] dnsp_name cname;